File tree Expand file tree Collapse file tree 2 files changed +10
-18
lines changed
aeon/anomaly_detection/whole_series Expand file tree Collapse file tree 2 files changed +10
-18
lines changed Original file line number Diff line number Diff line change 2
2
3
3
__all__ = [
4
4
"BaseCollectionAnomalyDetector" ,
5
- "OutlierDetectionClassifier" ,
5
+ "ClassificationAdapter" ,
6
+ "OutlierDetectionAdapter" ,
6
7
]
7
8
9
+ from aeon .anomaly_detection .whole_series ._classification import ClassificationAdapter
8
10
from aeon .anomaly_detection .whole_series ._outlier_detection import (
9
- OutlierDetectionClassifier ,
11
+ OutlierDetectionAdapter ,
10
12
)
11
13
from aeon .anomaly_detection .whole_series .base import BaseCollectionAnomalyDetector
Original file line number Diff line number Diff line change @@ -73,28 +73,18 @@ Outlier-Detection
73
73
OneClassSVM
74
74
STRAY
75
75
76
- Adapters
77
- ~~~~~~~~
76
+ Whole-series
77
+ ------------
78
78
79
- .. currentmodule :: aeon.anomaly_detection.series
79
+ .. currentmodule :: aeon.anomaly_detection.whole_series
80
80
81
81
.. autosummary ::
82
82
:toctree: auto_generated/
83
83
:template: class.rst
84
84
85
- PyODAdapter
86
-
87
- Base
88
- ~~~~
89
-
90
- .. currentmodule :: aeon.anomaly_detection.series
91
-
92
- .. autosummary ::
93
- :toctree: auto_generated/
94
- :template: class.rst
95
-
96
- BaseSeriesAnomalyDetector
97
-
85
+ BaseCollectionAnomalyDetector
86
+ ClassificationAdapter
87
+ OutlierDetectionAdapter
98
88
99
89
Base
100
90
----
You can’t perform that action at this time.
0 commit comments