您好,登錄后才能下訂單哦!
本篇文章為大家展示了怎么在tensorflow中利用mnis加載數據,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
TensorFlow? 是一個采用數據流圖(data flow graphs),用于數值計算的開源軟件庫。節點(Nodes)在圖中表示數學操作,圖中的線(edges)則表示在節點間相互聯系的多維數據數組,即張量(tensor)。它靈活的架構讓你可以在多種平臺上展開計算,例如臺式計算機中的一個或多個CPU(或GPU),服務器,移動設備等等。TensorFlow 最初由Google大腦小組(隸屬于Google機器智能研究機構)的研究員和工程師們開發出來,用于機器學習和深度神經網絡方面的研究,但這個系統的通用性使其也可廣泛用于其他計算領域。
%matplotlib from tensorflow.examples.tutorials.mnist import input_data import matplotlib.pyplot as plt mnist = input_data.read_data_sets('MNIST_data', one_hot=True) print('Training data size: ', mnist.train.num_examples) print('Validation data size: ', mnist.validation.num_examples) print('Test data size: ', mnist.test.num_examples) img0 = mnist.train.images[0].reshape(28,28) img1 = mnist.train.images[1].reshape(28,28) img2 = mnist.train.images[2].reshape(28,28) img3 = mnist.train.images[3].reshape(28,28) fig = plt.figure(figsize=(10,10)) ax0 = fig.add_subplot(221) ax1 = fig.add_subplot(222) ax2 = fig.add_subplot(223) ax3 = fig.add_subplot(224) ax0.imshow(img0) ax1.imshow(img1) ax2.imshow(img2) ax3.imshow(img3) fig.show()
畫圖結果:
上述內容就是怎么在tensorflow中利用mnis加載數據,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。