You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to run sedinet_train.py via as described in the ReadMe I get this error.
AttributeError: module 'numpy' has no attribute 'object'. np.object was a deprecated alias for the builtin object. To avoid this error in existing code, use object by itself. Doing this will not modify any behavior and is safe.
The aliases was originally deprecated in NumPy 1.20; for more details and guidance see the original release note at: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
As I understand it, it has to do with a change in numpy that has been implemented. Since it recommends that I modify the code, I need a way to search the code where np.object is defined.
The text was updated successfully, but these errors were encountered:
When I try to run sedinet_train.py via as described in the ReadMe I get this error.
AttributeError: module 'numpy' has no attribute 'object'.
np.object
was a deprecated alias for the builtinobject
. To avoid this error in existing code, useobject
by itself. Doing this will not modify any behavior and is safe.The aliases was originally deprecated in NumPy 1.20; for more details and guidance see the original release note at:
https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
As I understand it, it has to do with a change in numpy that has been implemented. Since it recommends that I modify the code, I need a way to search the code where np.object is defined.
The text was updated successfully, but these errors were encountered: