当我要导入时:

from nolearn.lasagne import NeuralNet

我总是得到这个错误
"cannot import name mse".

我的Theano版本是0.7.0。

最佳答案

我卸载了nolearn和烤宽面条:

pip uninstall nolearn
pip uninstall lasagne

然后在命令行中运行以下命令:
pip install -r https://raw.githubusercontent.com/dnouri/nolearn/master/requirements.txt https://github.com/dnouri/nolearn/archive/master.zip#egg=nolearn

现在可以了。

关于python-2.7 - nolearn 0.5与烤宽面条0.1或0.2不兼容?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32208646/

10-09 10:02