如何使用keras中的MINST数据集显示图像

时间:2018-05-08 09:22:34

标签: python matplotlib keras

我从keras导入了最小的数据集,并希望从中显示一些图像。但是由于我在内部从keras导入数据集,我应该如何使用matplotlib来显示一些图像呢?

%matplotlib inline 

import matplotlib.pyplot as plt
import matplotlib.image as mpimg

# this creates a training set and test set
(x_train, y_train), (x_test, y_test) = mnist.load_data()

img=mpimg.imread('x_train[1]')
imgplot = plt.imshow(img)
plt.show()

Screenshot from Keras library

1 个答案:

答案 0 :(得分:2)

你可以这样做

import matplotlib.pyplot as plt
image=x_train[1]
plt.imshow(image)
plt.show()