CCD
Collection
[ACL 2026] π· Mitigating Hallucinations in Radiology MLLMs via Clinical Contrastive Decoding β’ 8 items β’ Updated β’ 2
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
CheXpert-plus-RRG curates two report-generation benchmarks from the CheXpert Plus validation split. Each configuration links a frontal chest radiograph with its matching clinical narrative.
| Subset | Section Target | Split | #Samples | View Coverage |
|---|---|---|---|---|
findings_section |
Findings | valid | 62 | Frontal (AP/PA) |
impression_section |
Impression | valid | 202 | Frontal (AP/PA) |
Every sample provides:
main_image: a frontal-view chest X-ray as a PIL Image object.findings_section or impression_section, selected by the dataset configuration.default_prompt: a lightweight prompt scaffold to seed generation models.from datasets import load_dataset
# Load a specific subset (e.g., findings_section)
ds = load_dataset("X-iZhang/CheXpert-plus-RRG", name="findings_section", split="valid")
# Display an image
from PIL import Image
image = ds[0]["main_image"].convert("RGB")
image.show()
# Inspect the paired report text
text_key = "findings_section" # switch to "impression_section" for that subset
print(ds[0][text_key])
@article{zhang2025ccd,
title={CCD: Mitigating Hallucinations in Radiology MLLMs via Clinical Contrastive Decoding},
author={Zhang, Xi and Meng, Zaiqiao and Lever, Jake and Ho, Edmond SL},
journal={arXiv preprint arXiv:2509.23379},
year={2025}
}