Advertisement
Dundre32

Untitled

Oct 21st, 2020
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. !pip install mnist
  2.  
  3. import mnist
  4. import scipy.misc
  5.  
  6.  
  7. train_images = mnist.train_images()
  8. train_labels = mnist.train_labels()
  9.  
  10. test_images = mnist.test_images()
  11. test_labels = mnist.test_labels()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement