91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ubuntu如何安裝theano和keras

發布時間:2022-10-24 11:00:40 來源:億速云 閱讀:122 作者:iii 欄目:服務器

這篇文章主要介紹“ubuntu如何安裝theano和keras”,在日常操作中,相信很多人在ubuntu如何安裝theano和keras問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”ubuntu如何安裝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時會出現以下錯誤:

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++編譯的話速度比較快,在網上找到的大部分解決方案都是基于anaconda安裝的,解決方法是:

conda install mingw libpython

3,安裝theano

sudo pip3 install theano

 該命令會自動下載theano所需要的依賴,包括numpy,scipy等等。

4,安裝keras

sudo pip3 install keras

 最后需要注意的是,keras默認的backend是tensorflow,我們需要的是theano,所以需要修改下設置。(而且tensorflow用pip3安裝,在32位系統上沒有對應的版本!用源文件安裝又很復雜)

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(), ))

到此,關于“ubuntu如何安裝theano和keras”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

正镶白旗| 石渠县| 友谊县| 乌苏市| 酉阳| 祁东县| 调兵山市| 玉门市| 福建省| 广西| 宁国市| 毕节市| 盘锦市| 姚安县| 金秀| 三江| 乐亭县| 萝北县| 海城市| 蓝山县| 陆河县| 乐至县| 岑巩县| 南江县| 威远县| 水富县| 文登市| 老河口市| 上饶县| 河津市| 西丰县| 泾阳县| 东兰县| 葫芦岛市| 宣威市| 牡丹江市| 自治县| 吉林市| 山东省| 弥勒县| 江达县|