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
Ah, nvm I see the issue. This helper function uses np.polyfit which is the old numpy API, not yet deprecated AFAIK but less well-mannered than its replaced np.polynomial. We should bring the helper function up to the newer API; transition guide here.
Following error is thrown when running fixed_nrel() function on a azimuth/tilt estimation pipeline:
raise LinAlgError("SVD did not converge in Linear Least Squares")
LinAlgError: SVD did not converge in Linear Least Squares
This occurred when running numpy=1.19.1. Updated to numpy 1.19.5 and issue was resolved. Need to update minimum numpy installation.
The text was updated successfully, but these errors were encountered: