Skip to content

Commit 5fc6843

Browse files
MatthewMiddlehurstpattplatt
authored andcommitted
init
1 parent e6043d4 commit 5fc6843

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
11
"""Whole-series anomaly detection methods."""
2+
3+
__all__ = [
4+
"BaseCollectionAnomalyDetector",
5+
"OutlierDetectionClassifier",
6+
]
7+
8+
from aeon.anomaly_detection.whole_series._outlier_detection import (
9+
OutlierDetectionClassifier,
10+
)
11+
from aeon.anomaly_detection.whole_series.base import BaseCollectionAnomalyDetector

aeon/utils/base/_register.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"series-estimator": BaseSeriesEstimator,
4040
"transformer": BaseTransformer,
4141
"anomaly-detector": BaseAnomalyDetector,
42-
"collection-anomaly-detector": BaseCollectionAnomalyDetector,
42+
"collection_anomaly_detector": BaseCollectionAnomalyDetector,
4343
"collection-transformer": BaseCollectionTransformer,
4444
"classifier": BaseClassifier,
4545
"clusterer": BaseClusterer,

0 commit comments

Comments
 (0)