JuPyTer在简单的Theano功能上崩溃了

时间:2017-03-09 08:37:25

标签: python function theano jupyter-notebook jupyter

我最近刚安装了python和JuPyTeron一个新的MacOS,并希望进入DeepLearning。因此,我正在看Theano。

但是当我尝试在JuPyTer笔记本中使用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

1 个答案:

答案 0 :(得分:0)

通过sudo -H pip3 install --upgrade --no-deps git+git://github.com/Theano/Theano.git安装Theano的最新版本后,错误消失了。此外,对于那些也在尝试解决他们的Theano问题的人:尝试运行import theano;theano.test()并查找显示的错误和警告。