File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
anomaly_detection/whole_series Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1
1
"""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
Original file line number Diff line number Diff line change 39
39
"series-estimator" : BaseSeriesEstimator ,
40
40
"transformer" : BaseTransformer ,
41
41
"anomaly-detector" : BaseAnomalyDetector ,
42
- "collection-anomaly-detector " : BaseCollectionAnomalyDetector ,
42
+ "collection_anomaly_detector " : BaseCollectionAnomalyDetector ,
43
43
"collection-transformer" : BaseCollectionTransformer ,
44
44
"classifier" : BaseClassifier ,
45
45
"clusterer" : BaseClusterer ,
You can’t perform that action at this time.
0 commit comments