使用pybrain创建网络

时间:2016-10-16 08:05:07

标签: python-3.5

我想使用pybrain创建一个网络..我已经在我的Windows(64位)上安装了anaconda ..所以我安装了依赖项...当我运行代码时

>>> from pybrain.tools.shortcuts import buildNetwork
在闲置中

我遇到了这个错误:

>>>Traceback (most recent call last):
 File "<pyshell#3>", line 1, in <module>
 from pybrain.tools.shortcuts import buildNetwork
 File "C:\Users\ata\Anaconda3\lib\site-packages\pybrain\tools\shortcuts.py",     line 14
     except     ImportError, e:
                  ^
SyntaxError: invalid syntax

我有shrtcuts代码:enter image description here 我还有buildNetwork函数:enter image description here

如果有人能告诉我原因,我将不胜感激......

1 个答案:

答案 0 :(得分:4)

问题是pybrain不能用于python 3,虽然在它的网站上写的是它适用于python 2.5 +。