-
Notifications
You must be signed in to change notification settings - Fork 791
Open
Description
The latest release for this was created in 2017 with version 0.3.3: https://github.com/pybrain/pybrain/releases/tag/0.3.3
However, browsing the codebase, the setup.py had the version 0.3.1 baked in.
https://github.com/pybrain/pybrain/blob/882cf66a89b6b6bb8112f41d200c55461464aa06/setup.py
This doesn't matter all that much, but prior fixes to run PyBrain on newer versions (i.e. the solution in #201 to instead run python3 -m pip install https://github.com/pybrain/pybrain/archive/0.3.3.zip) are showing issues that have been addressed in later commits. For example:
from pybrain.datasets import SequentialDataSetresults in
Traceback (most recent call last):
File "main.py", line 4, in <module>
from pybrain.datasets import SequentialDataSet
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/pybrain/__init__.py", line 1, in <module>
from pybrain.structure.__init__ import *
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/pybrain/structure/__init__.py", line 2, in <module>
from pybrain.structure.modules.__init__ import *
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/pybrain/structure/modules/__init__.py", line 2, in <module>
from pybrain.structure.modules.gate import GateLayer, DoubleGateLayer, MultiplicationLayer, SwitchLayer
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/pybrain/structure/modules/gate.py", line 10, in <module>
from pybrain.tools.functions import sigmoid, sigmoidPrime
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/pybrain/tools/functions.py", line 4, in <module>
from scipy.linalg import inv, det, svd, logm, expm2
ImportError: cannot import name 'expm2' from 'scipy.linalg' (/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/scipy/linalg/__init__.py)
This issue was addressed in 5602313
Metadata
Metadata
Assignees
Labels
No labels