tensorflow-deep-learning
tensorflow-deep-learning copied to clipboard
All course materials for the Zero to Mastery Deep Learning with TensorFlow course.
Updated the video links in the README file of all the MIT lectures reference in the extra-curriculum part of part 01, 02 and 03. PS:- This is my first pull...
When plotting augmented_img we obtain the same image as the original random image. This was confirmed by rerunning the original class notebook.
I made changes to the links in the Readme file for time series and preparing for cert. , also removed "videos coming soon" _my first open source pull request
The NBEATS architecture rebuild is slightly off (I think, as of today I haven't read the paper in almost a year). There's a missing subtract connection (the red arrow below)....
`mae` value did not match when evaluated using `mode_10.evaluate()` and using `evaluate_time_series()` as tf.squeeze was not performed on the predictions(`turkey_preds`). we have used `mae` as the loss function, so evaluate()...
**My Code Of The Model After Data Augmentation. Model cloning was not working on my TensorFlow version for unknown reasons so I used this** ``` model_10 = Sequential([ Conv2D(10, 3,...
Hi, I am trying to use image augmentation and getting this issue. Although codes are running, data is not being augmented. Do you think this is some bug in Tensorflow?...
Hi, Daniel. Thanks for your great video! About the Huber in Regression Evauation Metrics:  I found it confusing when you describe Huber...