Giter Site home page Giter Site logo

instillai / tensorflow-course Goto Github PK

View Code? Open in Web Editor NEW
16.4K 16.4K 3.2K 21.21 MB

:satellite: Simple and ready-to-use tutorials for TensorFlow

License: MIT License

Python 3.03% Shell 0.02% Jupyter Notebook 96.94%
deep-learning deep-learning-tutorial python tensorflow

tensorflow-course's People

Contributors

astorfi avatar avinassh avatar brandonmbanks avatar brianfinkelstein avatar galvingao avatar hisashiq avatar joseph516 avatar matthewlqm avatar rayxie29 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

tensorflow-course's Issues

Several typos

Convolutional Neural Networks using TensorFlow

"is the one proposed by the paper Understanding the difficulty of training deep feedforward neural networks and provided by the TensorFlow." is repeated twice .

"this layer operates like and filly-connected layer"

"In The outputs of different layers"

ending of tutorial

i think at the end if there is a little about deployment it will become a piece of cake

The version of TensorFlow?

I want to know the version of tf in this repo.
In the 0-welcome, I use tf1.12, and the executed welcome string is bytes.
tf_version

It is not compat with tf2.2

Hi thanks for you tutorials for tf1.x, but It is not compat with tf2.x, can you provide a tutorials for tf2.2 ? Thank you

Math behind every Model

Math behind every model.

Example

  • Mathematical equations behind Logistic regression
  • At what point of the implementation those equations are being applied.

compatible with tensorflow 2.0

Is it compatible with tensorflow 2.0? There are some functions of tf1.13 are still used, is there any plan to upgrade the code for tensorflow 2.0?

Linear_SVM wrong norm_term

norm_term = tf.divide(tf.reduce_sum(tf.multiply(tf.transpose(W),W)),2)

should be

norm_term= tf.divide(tf.matmul(tf.transpose(W),W),2)

running problem

The content at line 29th of logistic_regression.py and line 26th of train_mlp.py should be int(np.power(2, 7)).

2 mistakes found

in linearregression,

# Create a callback that saves the model's weights every 5 epochs
checkpointCallback = tf.keras.callbacks.ModelCheckpoint(
    filepath=checkpoint_path, 
    verbose=1, 
    save_weights_only=True,
    save_freq=n_samples_save)

save_freq should be number of epochs(not batches):

# Create a callback that saves the model's weights every 5 epochs
checkpointCallback = tf.keras.callbacks.ModelCheckpoint(
    filepath=checkpoint_path, 
    verbose=1, 
    save_weights_only=True,
    save_freq=n_epochs_log)
# Return unique list elements
checkpoints =list(set(checkpoints))
print('checkpoints:',checkpoints)

to make the figures understood, the checkpoints file list should be sorted by created order:

# Return unique list elements
checkpoints = sorted(list(set(checkpoints)))
print('checkpoints:',checkpoints)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.