Skip to content

Instantly share code, notes, and snippets.

@mohammedouahman
Created November 17, 2021 18:07
Show Gist options
  • Save mohammedouahman/9ddd5f9eb104f793ae658e41631e6580 to your computer and use it in GitHub Desktop.
Save mohammedouahman/9ddd5f9eb104f793ae658e41631e6580 to your computer and use it in GitHub Desktop.
import the fashion MNIST dataset directly from tensoflow
fashion_mnist = tf.keras.datasets.fashion_mnist
(train_images, train_labels), (test_images, test_labels) = fashion_mnist.load_data()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment