Source code for adtk.detector

"""Module of detectors.

A detector detects anomalous time points from time series.

"""
from .._detector_base import (  # _NonTrainableMultivariateDetector,
    _NonTrainableUnivariateDetector,
    _TrainableMultivariateDetector,
    _TrainableUnivariateDetector,
)
from .._utils import _get_all_subclasses_from_superclass
from ._detector_1d import (
    AutoregressionAD,
    CustomizedDetector1D,
    GeneralizedESDTestAD,
    InterQuartileRangeAD,
    LevelShiftAD,
    PersistAD,
    QuantileAD,
    SeasonalAD,
    ThresholdAD,
    VolatilityShiftAD,
)
from ._detector_hd import (
    CustomizedDetectorHD,
    MinClusterDetector,
    OutlierDetector,
    PcaAD,
    RegressionAD,
)





__all__ = [
    "ThresholdAD",
    "QuantileAD",
    "InterQuartileRangeAD",
    "GeneralizedESDTestAD",
    "PersistAD",
    "LevelShiftAD",
    "VolatilityShiftAD",
    "AutoregressionAD",
    "SeasonalAD",
    "CustomizedDetector1D",
    "MinClusterDetector",
    "OutlierDetector",
    "RegressionAD",
    "PcaAD",
    "CustomizedDetectorHD",
    "print_all_models",
]