lmoroney / dlaicourse

Notebooks for learning deep learning
5.66k stars 5.37k forks source link

Error on Course 1 - Part 4 - Lesson 2 - Notebook.ipynb #113

Open davidhsv opened 4 years ago

davidhsv commented 4 years ago

On exercise 2, the code is:

import tensorflow as tf print(tf.version)

mnist = tf.keras.datasets.fashion_mnist

Therefore, importing the mnist dataset, not the fashion mnist, so all the conclusions is incorrect, we are comparing accuracy from fashion_minist 128 neurons to mnist 1024 neurons.

Thanks!

netskip commented 3 years ago

mnist is just a local variable. It's still the fashion_mnist dataset.