File size: 1,892 Bytes
1924181
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
license: mit
task_categories:
- visual-question-answering
tags:
- medical-imaging
- vision-language-models
- ct
- hallucination
- benchmark
pretty_name: Priors Over Pixels  Result Data
---

# Priors Over Pixels — Result Data

Per-model result JSONs for the MICCAI 2026 **SAFER** workshop paper
*"Priors Over Pixels: Present-Bias in Organ-Presence Grounding for Medical VLMs."*

These are the raw model verdicts behind every table in the paper — a POPE-style
organ-presence probe on BTCV abdominal CT, testing whether medical VLMs ground
their answers in pixels or recite anatomical priors.

- **Code / reproduction:** https://github.com/MR-Nazarov/priors-over-pixels
- **Models probed:** MedGemma-4B/27B, Gemma3-4B/27B (base ablation), Qwen2.5-VL-7B, LLaVA-Med

## Files

| file | contents |
|---|---|
| `pope_results.json` | MedGemma-27B (main run) |
| `pope_results_medgemma4b.json` | MedGemma-4B |
| `pope_results_qwen.json` | Qwen2.5-VL-7B |
| `pope_results_llavamed.json` | LLaVA-Med |
| `gemma3_4b_pope.json` / `gemma3_27b_pope.json` | base-Gemma3 ablation |
| `pope_summary_allmodels.json`, `pope_abstention.json`, `adv_zdist_*.json`, `pope_noimg_summary.json` | derived summaries |

## Schema

Each file is `{"records": [...]}`; a record is one `(sample_id, organ, format)`
verdict:

```json
{
  "sample_id": "img0023_z070_prior_consistent_pancreas",
  "organ": "gallbladder",
  "neg_strategy": "adversarial",
  "ground_truth_present": false,
  "parsed_present": true,
  "parse_fail": false,
  "format": "freetext",
  "raw": "gallbladder, left kidney, pancreas"
}
```

## Usage

```
hf download Lexer1/priors-over-pixels-data --repo-type dataset --local-dir .
# then run the analysis scripts from the code repo
```

## License

MIT. Contains model outputs and derived statistics over public BTCV case
identifiers — no patient data. BTCV itself is not redistributed here.