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
It would be great were compatible with numpy >= 2. It looks like the only change would be to convert np.prod to math.prod, though math.prod is a Python >= 3.8 feature, so if 3.7 compatibility is still desired, it could be changed to (math.prod if hasattr(math, 'prod') else np.prod). There are two instances in file.py.
The text was updated successfully, but these errors were encountered:
It would be great were compatible with numpy >= 2. It looks like the only change would be to convert
np.prod
tomath.prod
, thoughmath.prod
is a Python >= 3.8 feature, so if 3.7 compatibility is still desired, it could be changed to(math.prod if hasattr(math, 'prod') else np.prod)
. There are two instances in file.py.The text was updated successfully, but these errors were encountered: