Skip to content

Instantly share code, notes, and snippets.

@ogyalcin
Last active October 26, 2019 14:55
Show Gist options
  • Save ogyalcin/66d0785998588ab50cf1908f8d43bb7b to your computer and use it in GitHub Desktop.
Save ogyalcin/66d0785998588ab50cf1908f8d43bb7b to your computer and use it in GitHub Desktop.
Import Tensorflow and MNIST Dataset
import tensorflow as tf
(x_train, y_train), (x_test, y_test) = tf.keras.datasets.mnist.load_data()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment