ubuntu系統(tǒng)theano和keras的安裝方法
說明:系統(tǒng)是unbuntu14.04LTS,32位的操作系統(tǒng),以前安裝了python3.4,現(xiàn)在想要安裝theano和keras。步驟如下:
1,安裝pip
sudo apt-get install python3-setuptools sudo easy_install3 pip
2,安裝g++
sudo apt-get install g++
采用上述命令安裝g++,安裝完成后可用g++ -version查看是否安裝完成。注意,如果沒有安裝g++,在import theano時會出現(xiàn)以下錯誤:
WARNING (theano.configdefaults): g++ not detected ! Theano will be unable to execute optimized C-implementations (for both CPU and GPU) and will default to Python implementations. Performance will be severely degraded. To remove this warning, set Theano flags cxx to an empty string.
搜了一下是因為theano采用g++編譯的話速度比較快,在網(wǎng)上找到的大部分解決方案都是基于Anaconda安裝的,解決方法是:
conda install mingw libpython
3,安裝theano
sudo pip3 install theano
該命令會自動下載theano所需要的依賴,包括numpy,scipy等等。
4,安裝keras
sudo pip3 install keras
最后需要注意的是,keras默認的backend是tensorflow,我們需要的是theano,所以需要修改下設(shè)置。(而且tensorflow用pip3安裝,在32位系統(tǒng)上沒有對應(yīng)的版本!用源文件安裝又很復(fù)雜)
vim ~/.keras/keras.json { "image_dim_ordering":"tf", "epsilon":1e-07, "floatx":"float32", "backend":"theano" }
5,測試theano
import numpy as np import time import theano A = np.random.rand(1000,10000).astype(theano.config.floatX) B = np.random.rand(10000,1000).astype(theano.config.floatX) np_start = time.time() AB = A.dot(B) np_end = time.time() X,Y = theano.tensor.matrices('XY') mf = theano.function([X,Y],X.dot(Y)) t_start = time.time() tAB = mf(A,B) t_end = time.time() print("NP time: %f[s], theano time: %f[s] (times should be close when run on CPU!)" %( np_end-np_start, t_end-t_start)) print("Result difference: %f" % (np.abs(AB-tAB).max(), ))
總結(jié)
以上所述是小編給大家介紹的ubuntu系統(tǒng)theano和keras的安裝方法,希望對大家有所幫助!
相關(guān)文章
Linux環(huán)境下生成openssl證書注意細節(jié)介紹
大家好,本篇文章主要講的是Linux環(huán)境下生成openssl證書注意細節(jié)介紹,感興趣的同學(xué)趕快來看一看吧,對你有幫助的話記得收藏一下,方便下次瀏覽2021-12-12Linux bash:./xxx:無法執(zhí)行二進制文件報錯
這篇文章主要介紹了Linux bash:./xxx:無法執(zhí)行二進制文件報錯,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2020-03-03Ubuntu 16.04與Apache虛擬主機配置的步驟詳解
這篇文章主要給大家介紹了關(guān)于Ubuntu 16.04與Apache虛擬主機配置的相關(guān)資料,文中通過示例代碼介紹的非常詳細,對大家學(xué)習(xí)或者使用ubuntu16.04系統(tǒng)具有一定的參考學(xué)習(xí)價值,需要的朋友們來一起看看吧。2018-04-04Windows系統(tǒng)下Apache服務(wù)器無法啟動的問題解決
這篇文章主要介紹了Windows系統(tǒng)下Apache服務(wù)器無法啟動的問題解決,大多數(shù)情況下還是端口被占用的問題,需要的朋友可以參考下2015-07-07linux下通過xinetd服務(wù)管理 rsync 實現(xiàn)開機自啟動
這篇文章主要介紹了linux下通過xinetd服務(wù)管理 rsync 實現(xiàn)開機自啟動的相關(guān)資料,需要的朋友可以參考下2017-10-10