Fashion MNIST with Keras

3 / 4

Load the Dataset

Now we will load the Fashion MNIST dataset.

INSTRUCTIONS
  • Load the dataset from Keras module

    fashion_mnist = keras.datasets.fashion_mnist
    (X_train_full, y_train_full), (X_test, y_test) = fashion_mnist.load_data()
    


What is the shape of X_train_full?

(, , )



Note - Having trouble with the assessment engine? Follow the steps listed here

Loading comments...