2017-03-09 49 views
0

我剛剛安裝了python和JuPyTeron一個新的MacOS,並且想要進入DeepLearning。因此,我在看Theano。JuPyTer在簡單的Theano函數上崩潰

但是當我嘗試在JuPyTer Notebook中使用Theano執行一個非常簡單的函數時,它崩潰在我身上,我不明白爲什麼。你能幫我麼?

下面是代碼:

import theano 
from theano import tensor 
from theano import function 
a = tensor.dscalar() 
b = tensor.dscalar() 
c = a + b 
f = function([a,b], c) 

我已分離出錯誤的最後一行,在下面的彈出消息:

Picture of JuPyTer crash

+0

您能否從終端啓動jupyter並查看是否可以在崩潰後找到有關錯誤的更多信息? – cel

+0

Hi @cel,我想我可以做到這一點,但同時,我發現,我最好使用Theano的流血開發版本(http://deeplearning.net/software/theano/install.html#bleeding -edge-install-instructions)以及JuPyTer重新啓動後,theano.test()函數通過(只有一些警告),並且該函數像魅力一樣工作。 – Sispeks

回答

0

安裝Theano的前沿版本後通過sudo -H pip3 install --upgrade --no-deps git+git://github.com/Theano/Theano.git錯誤消失。此外,對於任何正試圖解決他們的Theano問題的人,請嘗試運行import theano;theano.test()並查找顯示的錯誤和警告。