Source code for darts.ad.scorers.nll_gamma_scorer

"""
NLL Gamma Scorer
----------------

Gamma distribution negative log-likelihood Scorer.

The anomaly score is the negative log likelihood of the actual series values
under a Gamma distribution estimated from the stochastic prediction.
"""

import numpy as np
from scipy.stats import gamma

from darts.ad.scorers.scorers import NLLScorer


[docs]class GammaNLLScorer(NLLScorer): def __init__(self, window: int = 1) -> None: super().__init__(window=window) def __str__(self): return "GammaNLLScorer" def _score_core_nllikelihood( self, deterministic_values: np.ndarray, probabilistic_estimations: np.ndarray, ) -> np.ndarray: params = np.apply_along_axis(gamma.fit, axis=1, arr=probabilistic_estimations) return -gamma.logpdf( deterministic_values, a=params[:, 0], loc=params[:, 1], scale=params[:, 2] )