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
scipy is used to calculate a function based on some data points. this is unnecessarily expensive and a very weird way of solving the problem of actually acquiring a function definition.
instead:
define an equivalent function, and call it.
then drop dependency to (then no longer) needed scipy package.
Also:
install numpy using pip rather than alpine's package-mgr
The text was updated successfully, but these errors were encountered:
Context / Motivation
scipy
is used to calculate a function based on some data points. this is unnecessarily expensive and a very weird way of solving the problem of actually acquiring a function definition.instead:
scipy
package.Also:
pip
rather than alpine's package-mgrThe text was updated successfully, but these errors were encountered: