From c24632ac9b51116e4c8a859284c883fd1bff7bc6 Mon Sep 17 00:00:00 2001 From: MatthewMiddlehurst Date: Mon, 24 Feb 2025 17:47:06 +0000 Subject: [PATCH] remove mixins just to see test --- aeon/classification/base.py | 2 +- aeon/regression/base.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/aeon/classification/base.py b/aeon/classification/base.py index 92d3b304a8..089ca671fc 100644 --- a/aeon/classification/base.py +++ b/aeon/classification/base.py @@ -36,7 +36,7 @@ class name: BaseClassifier from aeon.utils.validation.labels import check_classification_y -class BaseClassifier(ClassifierMixin, BaseCollectionEstimator): +class BaseClassifier(BaseCollectionEstimator): """ Abstract base class for time series classifiers. diff --git a/aeon/regression/base.py b/aeon/regression/base.py index f1acab5a00..327efce6f3 100644 --- a/aeon/regression/base.py +++ b/aeon/regression/base.py @@ -34,7 +34,7 @@ class name: BaseRegressor from aeon.base._base import _clone_estimator -class BaseRegressor(RegressorMixin, BaseCollectionEstimator): +class BaseRegressor(BaseCollectionEstimator): """Abstract base class for time series regressors. The base regressor specifies the methods and method signatures that all