nolearn/lasagne 支持 python 3

does nolearn/lasagne support python 3

如前所述,我正在 nolearn.lasagne 中使用神经网络实现 here
但是我收到以下错误:
ImportError: No module named 'cPickle'
我发现 cPickle 在 python-3
中是 pickle nolearn/lasagne 支持 python-3 吗?如果没有,是否有任何解决方法?

您使用的似乎是旧版本的 nolearn。使用这些命令尝试来自 Github 的当前主控:

pip uninstall nolearn pip install https://github.com/dnouri/nolearn/archive/master.zip#egg=nolearn

这里是 master 运行 Python 2.7 和 3.4 中的测试:https://travis-ci.org/dnouri/nolearn/builds/61806852