-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refact: Separation of anomaly detection from drift detection #1133
- Loading branch information
1 parent
6b42b7d
commit b73bb18
Showing
6 changed files
with
6 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from mlpro.oa.streams.tasks.anomalydetectors.basics import AnomalyDetector | ||
from mlpro.oa.streams.tasks.anomalydetectors.anomalies import * | ||
from mlpro.oa.streams.tasks.anomalydetectors.paga_detectors import AnomalyDetectorPAGA | ||
from mlpro.oa.streams.tasks.anomalydetectors.cb_detectors import * | ||
from mlpro.oa.streams.tasks.anomalydetectors.instancebased import * | ||
from mlpro.oa.streams.tasks.anomalydetectors.clusterbased import * |
4 changes: 1 addition & 3 deletions
4
src/mlpro/oa/streams/tasks/anomalydetectors/anomalies/__init__.py
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,5 +1,3 @@ | ||
from mlpro.oa.streams.tasks.anomalydetectors.anomalies.basics import Anomaly | ||
from mlpro.oa.streams.tasks.anomalydetectors.anomalies.point import PointAnomaly | ||
from mlpro.oa.streams.tasks.anomalydetectors.anomalies.group import GroupAnomaly | ||
from mlpro.oa.streams.tasks.anomalydetectors.anomalies.contextual import ContextualAnomaly | ||
from mlpro.oa.streams.tasks.anomalydetectors.anomalies.instancebased import * | ||
from mlpro.oa.streams.tasks.anomalydetectors.anomalies.clusterbased import * |
7 changes: 1 addition & 6 deletions
7
src/mlpro/oa/streams/tasks/anomalydetectors/clusterbased/__init__.py
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,6 +1 @@ | ||
from mlpro.oa.streams.tasks.anomalydetectors.cb_detectors.basics import AnomalyDetectorCB | ||
from mlpro.oa.streams.tasks.anomalydetectors.cb_detectors.disappearance_detector import ClusterDisappearanceDetector | ||
from mlpro.oa.streams.tasks.anomalydetectors.cb_detectors.density_change_detector import ClusterDensityChangeDetector | ||
from mlpro.oa.streams.tasks.anomalydetectors.cb_detectors.geo_size_change_detector import ClusterGeometricSizeChangeDetector | ||
from mlpro.oa.streams.tasks.anomalydetectors.cb_detectors.new_cluster_detector import NewClusterDetector | ||
from mlpro.oa.streams.tasks.anomalydetectors.cb_detectors.size_change_detector import ClusterSizeChangeDetector | ||
from mlpro.oa.streams.tasks.anomalydetectors.clusterbased.basics import AnomalyDetectorCB |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
from mlpro.oa.streams.tasks.anomalydetectors.instancebased.paga_detectors import AnomalyDetectorPAGA |
File renamed without changes.