Classification Detector
Implementation of AD algorithms based on classification.
- class ecgan.anomaly_detection.detector.classification_detector.ClassificationDetector(module, tracker)[source]
Bases:
ecgan.anomaly_detection.detector.base_detector.AnomalyDetector
,abc.ABC
Base class for anomaly detectors which directly classify data.
The anomalousness is asserted based on the classification score.
- class ecgan.anomaly_detection.detector.classification_detector.ArgmaxClassifierDetector(module, tracker)[source]
Bases:
ecgan.anomaly_detection.detector.classification_detector.ClassificationDetector
Detector which utilizes the maximum output of a classifier to predict labels.