Created
January 11, 2018 01:54
-
-
Save JoshVarty/0ca5af4235fd2f6e1b5e135758b98c54 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tensorflow as tf | |
from tensorflow.examples.tutorials.mnist import input_data | |
# Download the MNIST dataset to ./MNIST_data | |
mnist = input_data.read_data_sets('MNIST_data', one_hot=True) | |
train_images = mnist.train.images; | |
train_labels = mnist.train.labels | |
test_images = mnist.test.images; | |
test_labels = mnist.test.labels |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment