1. 程式人生 > >Tensorflow筆記二

Tensorflow筆記二

驗證 NPU import set als orf pytho 編譯 標簽

MNIST手寫體識別

(Mixed National Institute of Standards and Technology database)的28*28字符識別共0-9類。

在ipython命令行後者spyder中編譯下面代碼:

  from tensorflow.examples.tutorials.mnist import input_data  #加載MNIST數據集

  mnist = input_data.read_data_sets("MNIST_data",one_hot = True)

print(mnist.train.images.shape, minst.train.labels.shape)  #訓練集個數

print(mnist.test.images.shape,minst.test.labels.shape)  #測試集個數

print(mnist.validation.image.shape,mnist.validation.labels.shape)  #驗證集個數及樣本標簽的標記信息

Tensorflow筆記二