Skip to content

Commit

Permalink
stop storing metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
TonyBagnall committed Nov 29, 2024
1 parent 1f04c4a commit 8d42804
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aeon/segmentation/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def fit(self, X, y=None, axis=1):
self.reset()
if axis is None: # If none given, assume it is correct.
axis = self.axis
X = self._preprocess_series(X, axis, True)
X = self._preprocess_series(X, axis, False)
if y is not None:
y = self._check_y(y)
self._fit(X=X, y=y)
Expand Down Expand Up @@ -150,7 +150,7 @@ def predict(self, X, axis=1):
self._check_is_fitted()
if axis is None:
axis = self.axis
X = self._preprocess_series(X, axis, self.get_tag("fit_is_empty"))
X = self._preprocess_series(X, axis, False)
return self._predict(X)

def fit_predict(self, X, y=None, axis=1):
Expand Down

0 comments on commit 8d42804

Please sign in to comment.