Skip to content

Commit 68ca69a

Browse files
MatthewMiddlehurstpattplatt
authored andcommitted
docs and imports
1 parent eba9dee commit 68ca69a

File tree

2 files changed

+10
-18
lines changed

2 files changed

+10
-18
lines changed

aeon/anomaly_detection/whole_series/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22

33
__all__ = [
44
"BaseCollectionAnomalyDetector",
5-
"OutlierDetectionClassifier",
5+
"ClassificationAdapter",
6+
"OutlierDetectionAdapter",
67
]
78

9+
from aeon.anomaly_detection.whole_series._classification import ClassificationAdapter
810
from aeon.anomaly_detection.whole_series._outlier_detection import (
9-
OutlierDetectionClassifier,
11+
OutlierDetectionAdapter,
1012
)
1113
from aeon.anomaly_detection.whole_series.base import BaseCollectionAnomalyDetector

docs/api_reference/anomaly_detection.rst

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -73,28 +73,18 @@ Outlier-Detection
7373
OneClassSVM
7474
STRAY
7575

76-
Adapters
77-
~~~~~~~~
76+
Whole-series
77+
------------
7878

79-
.. currentmodule:: aeon.anomaly_detection.series
79+
.. currentmodule:: aeon.anomaly_detection.whole_series
8080

8181
.. autosummary::
8282
:toctree: auto_generated/
8383
:template: class.rst
8484

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
9888

9989
Base
10090
----

0 commit comments

Comments
 (0)