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>.
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>
.