JuPyTer 在简单的 Theano 函数上崩溃
JuPyTer crashes on simple Theano function
我最近刚安装了 python 和 JuPyTeron 一个新的 MacOS,想进入深度学习。因此,我在看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
通过 sudo -H pip3 install --upgrade --no-deps git+git://github.com/Theano/Theano.git
安装最新版本的 Theano 后,错误消失了。此外,对于任何也在尝试解决 Theano 问题的人:尝试 运行 import theano;theano.test()
并查找显示的错误和警告。
我最近刚安装了 python 和 JuPyTeron 一个新的 MacOS,想进入深度学习。因此,我在看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
通过 sudo -H pip3 install --upgrade --no-deps git+git://github.com/Theano/Theano.git
安装最新版本的 Theano 后,错误消失了。此外,对于任何也在尝试解决 Theano 问题的人:尝试 运行 import theano;theano.test()
并查找显示的错误和警告。