-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from NorskRegnesentral/new_detector_base_class
[ENH] New detector base class
- Loading branch information
Showing
33 changed files
with
1,345 additions
and
813 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,24 @@ | ||
"""Anomaly detection algorithms.""" | ||
|
||
from skchange.anomaly_detectors.anomalisers import StatThresholdAnomaliser | ||
from skchange.anomaly_detectors.base import ( | ||
CollectiveAnomalyDetector, | ||
PointAnomalyDetector, | ||
) | ||
from skchange.anomaly_detectors.capa import Capa | ||
from skchange.anomaly_detectors.circular_binseg import CircularBinarySegmentation | ||
from skchange.anomaly_detectors.moscore_anomaly import MoscoreAnomaly | ||
from skchange.anomaly_detectors.mvcapa import Mvcapa | ||
|
||
BASE_ANOMALY_DETECTORS = [CollectiveAnomalyDetector, PointAnomalyDetector] | ||
COLLECTIVE_ANOMALY_DETECTORS = [ | ||
Capa, | ||
CircularBinarySegmentation, | ||
MoscoreAnomaly, | ||
Mvcapa, | ||
StatThresholdAnomaliser, | ||
] | ||
POINT_ANOMALY_DETECTORS = [] | ||
ANOMALY_DETECTORS = COLLECTIVE_ANOMALY_DETECTORS + POINT_ANOMALY_DETECTORS | ||
|
||
__all__ = BASE_ANOMALY_DETECTORS + ANOMALY_DETECTORS |
Oops, something went wrong.