dy-meter-eval
Catching Every Ripple: Enhanced Anomaly Awareness via Dynamic Concept Adaptation — Zhu et al. (2026) (arXiv:2604.14726, 2026)
What this evaluates
Evaluates online anomaly detection models under concept drift by testing their ability to adapt to evolving data distributions without retraining. It probes instance-level sensitivity to context-dependent anomalies across continuous and discrete streaming scenarios.
Datasets
- Ionosphere — total 351; splits: stream (-1)
- Pima — total 768; splits: stream (-1)
- Satellite — total 6435; splits: stream (-1)
- Mammography — total 11183; splits: stream (-1)
- BGL — total 4713493; splits: stream (-1)
- NSL-KDD — total 125973; splits: stream (-1)
- KDD99 — total 494021; splits: stream (-1)
- Activity Recognition — total 6675; splits: stream (-1)
- Internal Bleeding — total 7492; splits: stream (-1)
- NASA — total 11299; splits: stream (-1)
- GaitPhase — total 11991; splits: stream (-1)
- EPG — total 30000; splits: stream (-1)
- ECG — total 80000; splits: stream (-1)
- Machine temperature — total 22695; splits: stream (-1)
- CPU utilization — total 18050; splits: stream (-1)
- INSECTS-Abr — total 44569; splits: stream (-1)
- INSECTS-Inc — total 48086; splits: stream (-1)
- INSECTS-IncGrd — total 20367; splits: stream (-1)
- INSECTS-IncRec — total 67455; splits: stream (-1)
- SynM-AbrRec — total 20480; splits: stream (-1)
- SynM-GrdRec — total 20480; splits: stream (-1)
- SynF-AbrRec — total 20480; splits: stream (-1)
- SynF-GrdRec — total 20480; splits: stream (-1)
Metrics
AUCROC (primary) — range: [0, 1]
- Area under the Receiver Operating Characteristic curve, plotting False Positive Rate against True Positive Rate across all classification thresholds.
AUCPR — range: [0, 1]
- Area under the Precision-Recall curve, displaying the relationship between precision and recall at differing thresholds.
Input / output format
Input: Sequential feature vectors arriving in a data stream, processed in sliding windows of size 64. Data may have temporal dependencies (continuous setting) or be independent (discrete setting).
Output: Continuous anomaly score per instance, used to compute threshold-independent curves.
Scoring recipe
import numpy as np
from sklearn.metrics import roc_auc_score, average_precision_score
def compute_metrics(y_true, scores):
auc_roc = roc_auc_score(y_true, scores)
auc_pr = average_precision_score(y_true, scores)
return {'AUCROC': auc_roc, 'AUCPR': auc_pr}
Common pitfalls
- Datasets are evaluated in a streaming/online setting with sliding windows, not standard static train/test splits.
- Synthetic datasets simulate concept drift by randomly swapping MNIST/FMNIST categories as anomaly targets, which differs from standard image benchmarks.
- Performance depends on searched hyperparameters (e.g., pseudo-labeling threshold μ_p ∈ [0.05, 0.5], uncertainty threshold μ_e ∈ [0.005, 0.4]), which must be tuned per dataset.
Evidence (verbatim from paper)
We utilize AUCROC and AUCPR metrics for evaluation. AUCROC calculates the area under the receiver operating characteristic (ROC) curve, plotting the false positive rate (FPR) against the true positive rate (TPR) across various thresholds. AUCPR measures the area under the precision-recall (PR) curve, displaying the relationship between precision and recall at differing thresholds. Both metrics range from 0 to 1, with higher values indicating superior performance.
Citation
@misc{zhu2026catching,
title={Catching Every Ripple: Enhanced Anomaly Awareness via Dynamic Concept Adaptation},
author={Zhu et al. (2026)},
year={2026},
note={arXiv:2604.14726}
}
1---2name: dy-meter-eval3description: Evaluates online anomaly detection models under concept drift by testing their ability to adapt to evolving data distributions without retraining. It probes instance-level sensitivity to context-dependent anomalies across continuous and discrete streaming scenarios. Use when the user wants to benchmark on Ionosphere, Pima, Satellite, Mammography, BGL, NSL-KDD, KDD99, Activity Recognition, Internal Bleeding, NASA, GaitPhase, EPG, ECG, Machine temperature, CPU utilization, INSECTS-Abr, INSECTS-Inc, INSECTS-IncGrd, INSECTS-IncRec, SynM-AbrRec, SynM-GrdRec, SynF-AbrRec, SynF-GrdRec, or asks about evaluating this task. Reports AUCROC.4---56# dy-meter-eval78> Catching Every Ripple: Enhanced Anomaly Awareness via Dynamic Concept Adaptation — Zhu et al. (2026) (arXiv:2604.14726, 2026)910## What this evaluates1112Evaluates online anomaly detection models under concept drift by testing their ability to adapt to evolving data distributions without retraining. It probes instance-level sensitivity to context-dependent anomalies across continuous and discrete streaming scenarios.1314## Datasets1516- **Ionosphere** — total 351; splits: stream (-1)17- **Pima** — total 768; splits: stream (-1)18- **Satellite** — total 6435; splits: stream (-1)19- **Mammography** — total 11183; splits: stream (-1)20- **BGL** — total 4713493; splits: stream (-1)21- **NSL-KDD** — total 125973; splits: stream (-1)22- **KDD99** — total 494021; splits: stream (-1)23- **Activity Recognition** — total 6675; splits: stream (-1)24- **Internal Bleeding** — total 7492; splits: stream (-1)25- **NASA** — total 11299; splits: stream (-1)26- **GaitPhase** — total 11991; splits: stream (-1)27- **EPG** — total 30000; splits: stream (-1)28- **ECG** — total 80000; splits: stream (-1)29- **Machine temperature** — total 22695; splits: stream (-1)30- **CPU utilization** — total 18050; splits: stream (-1)31- **INSECTS-Abr** — total 44569; splits: stream (-1)32- **INSECTS-Inc** — total 48086; splits: stream (-1)33- **INSECTS-IncGrd** — total 20367; splits: stream (-1)34- **INSECTS-IncRec** — total 67455; splits: stream (-1)35- **SynM-AbrRec** — total 20480; splits: stream (-1)36- **SynM-GrdRec** — total 20480; splits: stream (-1)37- **SynF-AbrRec** — total 20480; splits: stream (-1)38- **SynF-GrdRec** — total 20480; splits: stream (-1)3940## Metrics4142- `AUCROC` **(primary)** — range: [0, 1]43 - Area under the Receiver Operating Characteristic curve, plotting False Positive Rate against True Positive Rate across all classification thresholds.44- `AUCPR` — range: [0, 1]45 - Area under the Precision-Recall curve, displaying the relationship between precision and recall at differing thresholds.4647## Input / output format4849**Input**: Sequential feature vectors arriving in a data stream, processed in sliding windows of size 64. Data may have temporal dependencies (continuous setting) or be independent (discrete setting).5051**Output**: Continuous anomaly score per instance, used to compute threshold-independent curves.5253## Scoring recipe5455```python56import numpy as np57from sklearn.metrics import roc_auc_score, average_precision_score5859def compute_metrics(y_true, scores):60 auc_roc = roc_auc_score(y_true, scores)61 auc_pr = average_precision_score(y_true, scores)62 return {'AUCROC': auc_roc, 'AUCPR': auc_pr}63```6465## Common pitfalls6667- Datasets are evaluated in a streaming/online setting with sliding windows, not standard static train/test splits.68- Synthetic datasets simulate concept drift by randomly swapping MNIST/FMNIST categories as anomaly targets, which differs from standard image benchmarks.69- Performance depends on searched hyperparameters (e.g., pseudo-labeling threshold μ_p ∈ [0.05, 0.5], uncertainty threshold μ_e ∈ [0.005, 0.4]), which must be tuned per dataset.7071## Evidence (verbatim from paper)7273> We utilize AUCROC and AUCPR metrics for evaluation. AUCROC calculates the area under the receiver operating characteristic (ROC) curve, plotting the false positive rate (FPR) against the true positive rate (TPR) across various thresholds. AUCPR measures the area under the precision-recall (PR) curve, displaying the relationship between precision and recall at differing thresholds. Both metrics range from 0 to 1, with higher values indicating superior performance.7475## Citation7677```bibtex78@misc{zhu2026catching,79 title={Catching Every Ripple: Enhanced Anomaly Awareness via Dynamic Concept Adaptation},80 author={Zhu et al. (2026)},81 year={2026},82 note={arXiv:2604.14726}83}84```8586- arXiv: 2604.14726