Theano脚本不会运行。例如,我尝试在Jupyter Notebook中运行以下代码,但是我收到一条消息,说我的内核已经死了。重启内核也没有帮助。该错误并不仅限于此脚本,而是我尝试使用Theano运行的任何脚本。
以下是确切的错误消息:
内核似乎已经死亡。它会自动重启。"
我使用的是Anaconda,python 2.7.11,64bit。这个问题出现在CPU和GPU上。
import theano
from theano import tensor as T
# Basic expressions and calculus
x = T.dscalar('x')
y = T.dscalar('y')
z = x*x + y*y
f = theano.function([x,y], z)
theano设置摘要:
Float32,CPU
答案 0 :(得分:1)
看起来像Theano安装的问题。尝试卸载然后安装最新版本(pip install git+git://github.com/Theano/Theano.git
),看看是否仍然遇到问题。