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
We currently import several NumPy functions directly, e.g., here. Normally this isn't an issue, but min, max, mean, etc. override the standard definitions of these functions in Python.
We should refactor the code to import numpy as np then replace all of the NumPy function calls with np.<function name>.
The text was updated successfully, but these errors were encountered:
We currently import several NumPy functions directly, e.g., here. Normally this isn't an issue, but
min
,max
,mean
, etc. override the standard definitions of these functions in Python.We should refactor the code to
import numpy as np
then replace all of the NumPy function calls withnp.<function name>
.The text was updated successfully, but these errors were encountered: