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
AttributeError: module 'numpy' has no attribute 'float'
numpy.float was deprecated in numpy 1.20 and removed in 1.24, because it was counter-intuitively just aliasing builtin float. So the conservative fix is just to use float.
The text was updated successfully, but these errors were encountered:
Seems like we overlooked a deprecation cycle
numpy.float
was deprecated in numpy 1.20 and removed in 1.24, because it was counter-intuitively just aliasing builtinfloat
. So the conservative fix is just to usefloat
.The text was updated successfully, but these errors were encountered: