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
In model.py there is a with np.errstate() that suppresses warnings about dividing by 0 except for the instance when we are doing 0/0 since by IEEE standards that is defined as a separate type of error.
Should we update this np.errstate() to account for both or should we not suppress the invalid state?
Thank you in advance
The text was updated successfully, but these errors were encountered:
In
model.py
there is awith np.errstate()
that suppresses warnings about dividing by 0 except for the instance when we are doing0/0
since by IEEE standards that is defined as a separate type of error.Should we update this
np.errstate()
to account for both or should we not suppress the invalid state?Thank you in advance
The text was updated successfully, but these errors were encountered: