자습노트: mnist 공식 데이터를 표시하는 그림과 탭

1292 단어 tensorflow
#python 3.6
import  numpy as np
import tensorflow as tf
from tensorflow.examples.tutorials.mnist import input_data
import matplotlib.pyplot as plt
index=3 # , 
mnist=input_data.read_data_sets('/tmp/data/', one_hot=True)
image=np.reshape(mnist.train.images[index],[28,-1])
print(mnist.train.labels[index])  # label
plt.imshow(image, cmap=plt.get_cmap('gray_r'))  # 
plt.show()

좋은 웹페이지 즐겨찾기