Zurück zu den Modellen
Detector

ZeroAnomalies

Dummy anomaly detector which detects no anomalies ever.

Naive method that can serve as benchmarking pipeline or API test.

Detects no anomalies.

Schnellstart

python
from sktime.detection.dummy import ZeroAnomalies

estimator = ZeroAnomalies

Beispiele

>>> import pandas as pd
>>> from sktime.detection.dummy import ZeroAnomalies
>>> X = pd. Series ([1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ])
>>> d = ZeroAnomalies ()
>>> Xt = d. fit_transform (X)