Created
March 10, 2017 17:32
-
-
Save avloss/7a7286f77c50f238ec1e80084289b095 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
%matplotlib inline | |
import matplotlib.pyplot as plt | |
number = mnist.train.next_batch(1)[0] | |
plt.imshow(number.reshape(28,28)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment