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
nimfa/methods/factorization/snmf.py:610: RuntimeWarning: invalid value encountered in power
np.mat(2 ** np.array(list(range(l_var - 1, -1, -1)))), p_set)
I see this happens when l_var is 64 exceeding int64 range. Shouldn't we use floating point here like
I'm seeing warning
I see this happens when l_var is 64 exceeding int64 range. Shouldn't we use floating point here like
I'm also seeing most of time is spent on flatten() function that can be hoisted out like
from
to
The text was updated successfully, but these errors were encountered: