Skip to content

tuslkkk/tadpak

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Towards a Rigorous Evaluation of Time-series Anomaly Detection (AAAI 2022)

The implementation of PA%K evaluation protocol of Towards a Rigorous Evaluation of Time-sereis anomaly detection, Siwon Kim, Kukjin Choi, Hyun-Soo Choi, Byunghan Lee, and Sungroh Yoon, AAAI 2022. paper

Abstract

In recent years, proposed studies on time-series anomaly detection (TAD) report high F1 scores on benchmark TAD datasets, giving the impression of clear improvements. However, most studies apply a peculiar evaluation protocol called point adjustment (PA) before scoring. In this paper, we theoretically and experimentally reveal that the PA protocol has a great possibility of overestimating the detection performance; that is, even a random anomaly score can easily turn into a state-of-the-art TAD method. Therefore, the comparison of TAD methods with F1 scores after the PA protocol can lead to misguided rankings. Furthermore, we question the potential of existing TAD methods by showing that an untrained model obtains comparable detection performance to the existing methods even without PA. Based on our findings, we propose a new baseline and an evaluation protocol. We expect that our study will help a rigorous evaluation of TAD and lead to further improvement in future researches.

Installation

pip install tadpak

Usage

  1. Adjust prediction with PA%K protocol
from tadpak import pak

# scores  : predicted anomaly score
# targets : ground truth labels
# thres   : anomaly score threshold
# k       : pak threshold

adjusted_preds = pak.pak(scores, targets, thres, k=20)
  1. Evaluate predictions
import tadpak import evaluate

results = evaluate.evaluate(scores, targets)

To be updated

  1. Code for comparing customized model with case 1,2,3 of the paper

About

Towards a Rigorous Evaluation of Time-series Anomaly Detection (AAAI'22)

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages