MNIST安裝以及出現的問題

2021-08-21 10:56:18 字數 687 閱讀 4816

from tensorflow.examples.tutorials.mnist import input_data

mnist =input_data.read_data_sets("mnist_data/", one_hot = true)

其中input_data.py中沒有任何函式、類,重要的是**中匯入了read_data_sets模組:

#檢視訓練資料大小

print(mnist.train.images.shape)

print(mnist.train.labels.shape)

#檢視驗證資料大小

print(mnist.validation.images.shape)

print(mnist.validation.labels.shape)

#檢視測試資料大小

print(mnist.test.images.shape)

print(mnist.test.labels.shape)

3.執行結果:

(55000, 784)

(55000, 10)

(5000, 784)

(5000, 10)

(10000, 784)

(10000, 10)

安裝redis以及安裝過程出現的問題

安裝步驟 2 進行解壓 tar zxvf redis 3.0.0 rc2.tar.gz 3 安裝gcc成功之後,進入到redis 3.0.0目錄下,進行編譯 make,我們要是使用make命令繼續報錯 那麼我們就使用下面的命令進行編譯 make cflags march x86 64 直到出現表示m...

安裝編譯leveldb出現的問題以及總結

安裝leveldb 1 git clone2 到leveldb目錄下,執行make命令 make此時出現了錯誤 no targets specified and no makefile found.stop.網上有很多解決此錯誤的方法,但是都對我不太適應,後來在該目錄下執行 cmake 有乙個點,指...

Apache安裝過程出現的問題以及解決方法

近期剛剛學習php,在學習php環境搭建時安裝apache的工程 現的問題以及解決方法。總結了一下,分享給大家可以對剛剛學習php的小夥伴們有所幫助。apache簡介 apache是一款web伺服器軟體,有多種產品,可以支援ssl技術,支援多個虛擬主機。apache的特點是簡單 速度快 效能穩定,並...