Hi!
Just a few notes about this notebook:
- Section Parameters: parameter BATCH_SIZE(==32) is never being used. The actual batch_size later on in model.fit is set to 64.
- On the same section, the function plot_metrics says:
def plot_metrics(metric_name, title, ylim=5) → ylim should be 1 for a better visualization (at least for accuracy). - Section “Train the model” states that training the model “… will take around 20 minutes to complete”, but there are 4 epochs and each epoch takes about 15 minutes → more than an hour…on a GPU in Colab. Maybe it should say: each epoch takes about 15-20 minutes.
Thank you for the course!