当我想导入时:
from nolearn.lasagne import NeuralNet
我总是遇到这个错误
"cannot import name mse".
我的Theano版本是0.7.0。
答案 0 :(得分:3)
我卸载了nolearn和lasagne:
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
现在它有效。