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)
我已分離出錯誤的最後一行,在下面的彈出消息:
您能否從終端啓動jupyter並查看是否可以在崩潰後找到有關錯誤的更多信息? – cel
Hi @cel,我想我可以做到這一點,但同時,我發現,我最好使用Theano的流血開發版本(http://deeplearning.net/software/theano/install.html#bleeding -edge-install-instructions)以及JuPyTer重新啓動後,theano.test()函數通過(只有一些警告),並且該函數像魅力一樣工作。 – Sispeks