mit-deep-learning
mit-deep-learning copied to clipboard
Tutorials, assignments, and competitions for MIT Deep Learning related courses.
I really enjoyed using this project, nice work! Found a couple typos in the README though 😛
path: tutorial_gans/tutorial_gans.ipynb Some tf functions are deprecated I added: `!pip install tensorflow==1.15` and there was no video, so i changed the last code cell to: ` mp4 = open('gan.mp4','rb').read() data_url...
tf.train.AdamOptimizer() is now tf.optimizer.Adam() see api https://www.tensorflow.org/versions/r2.0/api_docs/python/tf/optimizers
This will not run on TF2 due to the fact that tf.train.AdamOptimizer is not available in TF2. Hence, I am proposing this minor change to ensure TF1.x is selected when...
minor tweak to get running w/current versions of toolset since initial checkin. Thanks-- awesome hands on primer. Now i can crank Hendrix - 'Are you Experienced' and do some deeeeep...
Was getting tensorflow package errors while running the demo code so I updated it to reflect the naming conventions.
I've updated these tutorials to look for TensorFlow version 2.x and if so invoke the legacy mode to allow these models to run. I also updated a couple tutorials to...