Login using Social Account
Login using your credentials
Now we will load the Fashion MNIST dataset.
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? (, , )
Taking you to the next exercise in seconds...
Stay here Next Exercise
Want to create exercises like this yourself? Click here.
Note - Having trouble with the assessment engine? Follow the steps listed here
1 About the Fashion MNIST Dataset
2 Import required modules
3 Load the Dataset
4 Divide the Dataset into Training and Validation Set
Loading comments...