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
mtrack.stem_activations is a list of lists, but the docs say it's an ndarray
The shape does not line up to the number of stems; it's off by one. It looks like the first column is reserved for a time index, not activations.
The first point is an easy fix.
The second point is confusing, and it's generally not good style to mix indexing/addressing (ie timestamps) with observation data. (If you do so, it should definitely be documented.) I recommend refactoring this so that the time index is stored separately.
The text was updated successfully, but these errors were encountered:
Two points:
mtrack.stem_activations
is a list of lists, but the docs say it's anndarray
The first point is an easy fix.
The second point is confusing, and it's generally not good style to mix indexing/addressing (ie timestamps) with observation data. (If you do so, it should definitely be documented.) I recommend refactoring this so that the time index is stored separately.
The text was updated successfully, but these errors were encountered: