pandas as pd
import matplotlib.pyplot as plt
test_data = pd.read_csv("mnist_test.csv",header=None)
image_row = test_data.values[0,1:]
image_mat = image_row.reshape(28,28)
c = plt.imshow(image_mat)
print(c)
У меня в лог выводиться " АxesImage(80,52.8;496x369.6)"
А как именно картинку показать(посмотреть)?
А зачем ты в консоль выводишь c?
Обсуждают сегодня