Anonymous commited on
Commit
9a5d890
·
verified ·
1 Parent(s): 9cbdb03

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +118 -3
README.md CHANGED
@@ -1,3 +1,118 @@
1
- ---
2
- license: cc-by-nc-sa-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # NOVA: A Benchmark for Anomaly Localization and Clinical Reasoning in Brain MRI
2
+
3
+ > **An open-world generalization benchmark under clinical distribution shift**
4
+
5
+ [![License: CC BY-NC-SA 4.0](https://img.shields.io/badge/License-CC--BY--NC--SA%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc-sa/4.0/)
6
+ [Dataset on 🤗 Hugging Face](https://huggingface.co/datasets/Ano-2090/Nova)
7
+ *For academic, non-commercial use only*
8
+
9
+ ---
10
+
11
+ ## 🔖 Citation
12
+
13
+ If you find this dataset useful in your work, please consider citing it:
14
+
15
+ <details>
16
+ <summary>📖 Click to show citation (⚠️ **Double-blind review warning**: If you are a reviewer, please **do not expand** this section if anonymity must be preserved.)</summary>
17
+
18
+
19
+
20
+ ```bibtex
21
+ @article{bercea2025nova,
22
+ title={NOVA: A Benchmark for Anomaly Localization and Clinical Reasoning in Brain MRI},
23
+ author={Bercea, Cosmin I. and Li, Jun and Raffler, Philipp and Riedel, Evamaria O. and Schmitzer, Lena and Kurz, Angela and Bitzer, Felix and Roßmüller, Paula and Canisius, Julian and Beyrle, Mirjam L. and others},
24
+ journal={arXiv preprint},
25
+ year={2025},
26
+ note={Preprint. Under review.}
27
+ }
28
+ ```
29
+
30
+ </details>
31
+
32
+ ---
33
+
34
+ ## 💡 Motivation
35
+
36
+ Machine learning models in real-world clinical settings must detect and reason about anomalies they have **never seen during training**. Current benchmarks mostly focus on known, curated categories—collapsing evaluation back into a **closed-set** problem and overstating model robustness.
37
+
38
+ **NOVA** is the first benchmark designed as a **zero-shot, evaluation-only** setting for assessing how well models:
39
+
40
+ - Detect **rare, real-world anomalies**
41
+ - Generalize across diverse MRI protocols and acquisition settings
42
+ - Perform **multimodal reasoning** from image, text, and clinical context
43
+
44
+ It challenges foundation models and vision-language systems with what they *were not trained for*: the **unexpected**.
45
+
46
+ ---
47
+
48
+ ## 🧠 Dataset Overview
49
+
50
+ - **906 brain MRI slices**
51
+ - **281 rare neurological conditions**, spanning neoplastic, vascular, metabolic, congenital, and other pathologies
52
+ - **Real-world clinical heterogeneity** (unprocessed, long-tailed distribution)
53
+ - **Radiologist-written captions** and **double-blinded bounding boxes**
54
+ - **Clinical histories** and diagnostics for reasoning tasks
55
+
56
+ 🛠️ All cases are **2D PNG slices**, sized 480×480, and are available under CC BY-NC-SA 4.0.
57
+
58
+ ---
59
+
60
+ ## 📊 Benchmark Tasks
61
+
62
+ NOVA captures the clinical diagnostic workflow through **three open-world tasks**:
63
+
64
+ ### 🔍 1. Anomaly Localization
65
+ Detect abnormal regions via bounding box prediction. Evaluated with:
66
+ - `mAP@30`, `mAP@50`, `mAP@[50:95]`
67
+ - True/false positive counts per case
68
+
69
+ ### 📝 2. Image Captioning
70
+ Generate structured radiology-style descriptions.
71
+ - Evaluated with Clinical/Modality F1, BLEU, METEOR
72
+ - Also assesses normal/abnormal classification
73
+
74
+ ### 🧩 3. Diagnostic Reasoning
75
+ Predict the correct diagnosis based on clinical history + image caption.
76
+ - Evaluated with Top-1, Top-5 accuracy
77
+ - Label coverage and entropy analysis for long-tail reasoning
78
+
79
+ ---
80
+
81
+ ## 🧪 Model Performance (Stress Test)
82
+
83
+ | Task | Top Model (2025) | Top Metric | Score |
84
+ |-----------------------|--------------------|---------------------|----------|
85
+ | Anomaly Localization | Qwen2.5-VL-72B | mAP@50 | 24.5% |
86
+ | Image Captioning | Gemini 2.0 Flash | Clinical Term F1 | 19.8% |
87
+ | Diagnostic Reasoning | GPT-4o | Top-1 Accuracy | 24.2% |
88
+
89
+ Even top-tier foundation models fail under this **open-world generalization** benchmark.
90
+
91
+ ---
92
+
93
+ ## 📦 Usage
94
+
95
+ ```python
96
+ from datasets import load_dataset
97
+ dataset = load_dataset("Ano-2090/Nova")
98
+ ```
99
+
100
+ ---
101
+
102
+ ## ⚠️ Intended Use
103
+
104
+ NOVA is intended **strictly for evaluation**. Each case has a unique diagnosis, preventing leakage and forcing **true zero-shot testing**.
105
+
106
+ Do **not** fine-tune on this dataset.
107
+ Ideal for:
108
+ - Vision-language model benchmarking
109
+ - Zero-shot anomaly detection
110
+ - Rare disease generalization
111
+
112
+ ---
113
+
114
+ ## 📬 Contact
115
+
116
+ Stay tuned for the **public leaderboard** coming soon.
117
+
118
+ ---