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
localreg fails to perform calculations that call np.product() because that method has been renamed to np.prod(). np.product() was deprecated many versions ago and has been removed in recent versions.
Change np.product() to np.prod() in two places in localreg,.py and everything will work as before (tested in my gf4 program).
The text was updated successfully, but these errors were encountered:
localreg fails to perform calculations that call
np.product()
because that method has been renamed tonp.prod()
.np.product()
was deprecated many versions ago and has been removed in recent versions.Change
np.product()
tonp.prod()
in two places in localreg,.py and everything will work as before (tested in my gf4 program).The text was updated successfully, but these errors were encountered: