rodolpheg

Untitled

Nov 23rd, 2020
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. from tensorflow.keras.datasets import mnist
  2. (x_train,y_train), (x_test,y_test) = mnist.load_data()
  3. x_train.shape
  4. image_0 = x_train[0]
  5. plt.imshow(image_0)
Advertisement
Add Comment
Please, Sign In to add comment