Hello All,
In DLS Course 2, week 3, programming assignment, at step “3.3 - Train the Model” it is mentioned:
" Let’s talk optimizers. 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."
and within the model function I can see:
“optimizer = tf.keras.optimizers.SGD(learning_rate)”
Should here be Adam instead of SGD, as mentioned in the description?
Thank you!