Lexer1 commited on
Commit
1924181
·
verified ·
1 Parent(s): 0967bc0

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +65 -0
README.md ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - visual-question-answering
5
+ tags:
6
+ - medical-imaging
7
+ - vision-language-models
8
+ - ct
9
+ - hallucination
10
+ - benchmark
11
+ pretty_name: Priors Over Pixels — Result Data
12
+ ---
13
+
14
+ # Priors Over Pixels — Result Data
15
+
16
+ Per-model result JSONs for the MICCAI 2026 **SAFER** workshop paper
17
+ *"Priors Over Pixels: Present-Bias in Organ-Presence Grounding for Medical VLMs."*
18
+
19
+ These are the raw model verdicts behind every table in the paper — a POPE-style
20
+ organ-presence probe on BTCV abdominal CT, testing whether medical VLMs ground
21
+ their answers in pixels or recite anatomical priors.
22
+
23
+ - **Code / reproduction:** https://github.com/MR-Nazarov/priors-over-pixels
24
+ - **Models probed:** MedGemma-4B/27B, Gemma3-4B/27B (base ablation), Qwen2.5-VL-7B, LLaVA-Med
25
+
26
+ ## Files
27
+
28
+ | file | contents |
29
+ |---|---|
30
+ | `pope_results.json` | MedGemma-27B (main run) |
31
+ | `pope_results_medgemma4b.json` | MedGemma-4B |
32
+ | `pope_results_qwen.json` | Qwen2.5-VL-7B |
33
+ | `pope_results_llavamed.json` | LLaVA-Med |
34
+ | `gemma3_4b_pope.json` / `gemma3_27b_pope.json` | base-Gemma3 ablation |
35
+ | `pope_summary_allmodels.json`, `pope_abstention.json`, `adv_zdist_*.json`, `pope_noimg_summary.json` | derived summaries |
36
+
37
+ ## Schema
38
+
39
+ Each file is `{"records": [...]}`; a record is one `(sample_id, organ, format)`
40
+ verdict:
41
+
42
+ ```json
43
+ {
44
+ "sample_id": "img0023_z070_prior_consistent_pancreas",
45
+ "organ": "gallbladder",
46
+ "neg_strategy": "adversarial",
47
+ "ground_truth_present": false,
48
+ "parsed_present": true,
49
+ "parse_fail": false,
50
+ "format": "freetext",
51
+ "raw": "gallbladder, left kidney, pancreas"
52
+ }
53
+ ```
54
+
55
+ ## Usage
56
+
57
+ ```
58
+ hf download Lexer1/priors-over-pixels-data --repo-type dataset --local-dir .
59
+ # then run the analysis scripts from the code repo
60
+ ```
61
+
62
+ ## License
63
+
64
+ MIT. Contains model outputs and derived statistics over public BTCV case
65
+ identifiers — no patient data. BTCV itself is not redistributed here.