Add model card and metadata for AnomaMind-8B

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +43 -0
README.md ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ library_name: transformers
4
+ pipeline_tag: other
5
+ base_model: Qwen/Qwen3-8B
6
+ ---
7
+
8
+ # AnomaMind-8B
9
+
10
+ AnomaMind is an agentic framework that reformulates time series anomaly detection (TSAD) as an evidence-driven sequential decision-making process. This repository contains the 8B detector model, which is based on the **Qwen3-8B** architecture and optimized using reinforcement learning.
11
+
12
+ The model was introduced in the paper: [AnomaMind: Agentic Time Series Anomaly Detection with Tool-Augmented Reasoning](https://huggingface.co/papers/2602.13807).
13
+
14
+ ## Resources
15
+ - **Paper:** [AnomaMind: Agentic Time Series Anomaly Detection with Tool-Augmented Reasoning](https://huggingface.co/papers/2602.13807)
16
+ - **Repository:** [Xiaoyu-Tao/AnomaMind-TS](https://github.com/Xiaoyu-Tao/AnomaMind-TS)
17
+
18
+ ## Model Description
19
+
20
+ AnomaMind operates through a coarse-to-fine workflow that localizes suspicious intervals, constructs diagnostic evidence through tool interaction (statistical, value-based, and change-based operators), and refines decisions through self-reflection. This hybrid approach allows general-purpose models to handle flexible reasoning while this task-specific policy handles precise detection.
21
+
22
+ ## Usage
23
+
24
+ ### Serving with vLLM
25
+
26
+ You can serve the model using [vLLM](https://github.com/vllm-project/vllm) with the following command (replace the path with your local checkpoint if necessary):
27
+
28
+ ```bash
29
+ vllm serve YuChongZ/AnomaMind-8B --port 8000 --max-model-len 11000 --gpu-memory-utilization 0.95 --enable-auto-tool-choice --tool-call-parser hermes --served-model-name detector
30
+ ```
31
+
32
+ Once served, the model can be used for inference as part of the AnomaMind agentic workflow. For detailed environment setup and data preprocessing, please refer to the [official GitHub repository](https://github.com/Xiaoyu-Tao/AnomaMind-TS).
33
+
34
+ ## Citation
35
+
36
+ ```bibtex
37
+ @article{tao2026anomamind,
38
+ title={AnomaMind: Agentic Time Series Anomaly Detection with Tool-Augmented Reasoning},
39
+ author={Tao, Xiaoyu and Wu, Yuchong and Cheng, Mingyue and Guo, Ze and Gao, Tian},
40
+ journal={arXiv preprint arXiv:2602.13807},
41
+ year={2026}
42
+ }
43
+ ```