Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewMiddlehurst committed Feb 24, 2025
1 parent c24632a commit 3167de8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aeon/classification/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class name: BaseClassifier
from aeon.utils.validation.labels import check_classification_y


class BaseClassifier(BaseCollectionEstimator):
class BaseClassifier(ClassifierMixin, BaseCollectionEstimator):
"""
Abstract base class for time series classifiers.
Expand Down
2 changes: 1 addition & 1 deletion aeon/regression/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class name: BaseRegressor
from aeon.base._base import _clone_estimator


class BaseRegressor(BaseCollectionEstimator):
class BaseRegressor(RegressorMixin, BaseCollectionEstimator):
"""Abstract base class for time series regressors.
The base regressor specifies the methods and method signatures that all
Expand Down

0 comments on commit 3167de8

Please sign in to comment.