Skip to content

Instantly share code, notes, and snippets.

@siakon89
Created March 29, 2020 15:31
Show Gist options
  • Save siakon89/d919969b64a6bad51f2d3755d167b696 to your computer and use it in GitHub Desktop.
Save siakon89/d919969b64a6bad51f2d3755d167b696 to your computer and use it in GitHub Desktop.
# TensorFlow and tf.keras
import tensorflow as tf
from tensorflow import keras
fashion_mnist = 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