Hi!
The introduction to 3.3 - Train the Model in the assignment of course 2, week 3 states
You’ll specify the type of optimizer in one line, in this case
tf.keras.optimizers.Adam
(though you can use others such as SGD), and then call it within the training loop.
In fact the code and the expected output use
optimizer = tf.keras.optimizers.SDG(learning_rate)
Please correct either the description or the code and expected output. And a note that the training is running for 5 minutes would be also nice
Thanks!