当我想要导入时:
from nolearn.lasagne import NeuralNet我总是收到这样的错误
"cannot import name mse".我的Theano版本是0.7.0。
发布于 2015-08-26 00:37:01
我卸载了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现在它起作用了。
https://stackoverflow.com/questions/32208646
复制相似问题