Skip to content

ConstantThresholder

Constant thresholder.

Each anomaly score is thresholded into a 0 or a 1.

Parameters

  • anomaly_detector (river.anomaly.base.AnomalyDetector)

    The anomaly detector that will learn and produce scores.

  • threshold (float)

    The threshold to apply.

Examples

>>> from river import anomaly
>>> from river import compose
>>> from river import datasets
>>> from river import metrics
>>> from river import preprocessing

>>> model = compose.Pipeline(
...     preprocessing.MinMaxScaler(),
...     anomaly.ConstantThresholder(
...         anomaly.HalfSpaceTrees(seed=42),
...         threshold=0.8
...     )
... )

>>> report = metrics.ClassificationReport()

>>> for x, y in datasets.CreditCard().take(8000):
...     score = model.score_one(x)
...     model = model.learn_one(x)
...     report = report.update(y, score)

>>> report
           Precision   Recall   F1      Support
<BLANKLINE>
       0       0.999    0.939   0.968      7975
       1       0.038    0.760   0.072        25
<BLANKLINE>
   Macro       0.518    0.850   0.520
   Micro       0.939    0.939   0.939
Weighted       0.996    0.939   0.965
<BLANKLINE>
                 93.9% accuracy

Methods

clone

Return a fresh estimator with the same parameters.

The clone has the same parameters but has not been updated with any data. This works by looking at the parameters from the class signature. Each parameter is either - recursively cloned if it's a River classes. - deep-copied via copy.deepcopy if not. If the calling object is stochastic (i.e. it accepts a seed parameter) and has not been seeded, then the clone will not be idempotent. Indeed, this method's purpose if simply to return a new instance with the same input parameters.

learn_one

Update the model.

Parameters

  • x (dict)

Returns

AnomalyDetector: self

score_one

Return an outlier score.

A high score is indicative of an anomaly. A low score corresponds a normal observation.

Parameters

  • x (dict)

Returns

float: An anomaly score. A high score is indicative of an anomaly. A low score corresponds a