Add dataset card with metadata and dataset structure

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +53 -0
README.md ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - image-to-text
4
+ tags:
5
+ - medical
6
+ - radiology
7
+ - chest-xray
8
+ ---
9
+
10
+ # REVA-PO Datasets
11
+
12
+ This repository contains the processed annotations and dataset structures used in the paper **REVA-PO: Stabilizing Reinforcement Learning for Chest X-ray Report Generation** (ECCV 2026).
13
+
14
+ [Paper (arXiv)](https://arxiv.org/abs/2607.10147) | [Code (GitHub)](https://github.com/LiGuo12/REVA_PO/)
15
+
16
+ ## Dataset Structure
17
+
18
+ ### 1. IU-Xray
19
+ Download the [IU-Xray](https://huggingface.co/datasets/liguo12/REVA_PO_Datasets/tree/main/iuxray_dataset) files and unzip `images.zip`.
20
+
21
+ After unzipping, the directory structure should look like this:
22
+ ```text
23
+ iuxray_dataset/
24
+ ├── images/
25
+ └── annotation_with_categories.json
26
+ ```
27
+
28
+ ### 2. MIMIC-CXR
29
+ Download the chest X-ray images of the MIMIC-CXR dataset from the [official PhysioNet website](https://physionet.org/content/mimic-cxr-jpg/2.0.0/), and download the [annotations](https://huggingface.co/datasets/liguo12/REVA_PO_Datasets/tree/main/mimic_dataset) from this repository.
30
+
31
+ Place the annotations and images (`files` directory from PhysioNet) into the same folder:
32
+ ```text
33
+ mimic_dataset/
34
+ ├── files/
35
+ ├── mimic_with_categories.json
36
+ └── mimic_with_categories_sampled_10k.json
37
+ ```
38
+
39
+ ## Citation
40
+
41
+ If you find this work or the datasets helpful, please cite the paper:
42
+
43
+ ```bibtex
44
+ @misc{guo2026revapo,
45
+ title={REVA-PO: Stabilizing Reinforcement Learning for Chest X-ray Report Generation},
46
+ author={Li Guo and Anas M. Tahir and Z. Jane Wang},
47
+ year={2026},
48
+ eprint={2607.10147},
49
+ archivePrefix={arXiv},
50
+ primaryClass={cs.CV},
51
+ url={https://arxiv.org/abs/2607.10147},
52
+ }
53
+ ```