Skip to content

Commit 807c28b

Browse files
Copilotalexarje
andauthored
feat: Phases 3-6 – pose estimator, pipeline, dataset, CLI, tests, docs
Agent-Logs-Url: https://github.com/fourMs/MGT-python/sessions/be8d0d40-00a4-403d-a196-b06380960b6e Co-authored-by: alexarje <114316+alexarje@users.noreply.github.com>
1 parent d317d22 commit 807c28b

2 files changed

Lines changed: 711 additions & 1 deletion

File tree

musicalgestures/_features.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def __iter__(self):
148148
"""Iterate over feature names."""
149149
return iter(self._data)
150150

151-
def __array__(self, dtype=None) -> np.ndarray:
151+
def __array__(self, dtype=None, copy=None) -> np.ndarray:
152152
"""Return a 2-D array of shape ``(n_features, n_samples)``."""
153153
arr = np.stack(list(self._data.values()), axis=0)
154154
return arr if dtype is None else arr.astype(dtype)

0 commit comments

Comments
 (0)