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
features/burst.py/compute_monotonicity : might be able to change monotonicity = np.ones(cycles) * np.nan so that the np.ones is not being initialized just to be replaced by nans
Other functions in features/burst.py have the the same initialization issue as compute_monotonicity() (line 288), including compute_amp_consistency() (line 163) and compute_period_consistency() (line 239),
features/burst.py/compute_amp_consistency : might be able to change all instances of np.nanmin or nanmax to commands using Bottleneck https://pypi.org/project/Bottleneck/0.4.2/ but might be an issue of adding dependencies?
monotonicity = np.ones(cycles) * np.nan
so that the np.ones is not being initialized just to be replaced by nansThe text was updated successfully, but these errors were encountered: