Evaluates multi-turn, multi-modal dialogue capabilities for radiology patient education, testing how well models personalize explanations based on hidden patient profiles and ground visual annotations in medical images. It probes the alignment between textual explanations and drawn/image-marked evidence, as well as safety and scope adherence in medical contexts. Use when the user wants to benchmark on MedImageEdu, or asks about evaluating this task. Reports MedImageEdu Overall.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill medimageedu-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Medimageedu Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-medimageedu-eval)More formats (shields.io, HTML) on the badges page.
---
name: medimageedu-eval
description: Evaluates multi-turn, multi-modal dialogue capabilities for radiology patient education, testing how well models personalize explanations based on hidden patient profiles and ground visual annotations in medical images. It probes the alignment between textual explanations and drawn/image-marked evidence, as well as safety and scope adherence in medical contexts. Use when the user wants to benchmark on MedImageEdu, or asks about evaluating this task. Reports MedImageEdu Overall.
metadata:
skill_kind: dataset_eval
source_arxiv: 2604.14656
bibtex_key: yao2026medimageedu
confidence: high
---
# medimageedu-eval
> Rethinking Patient Education as Multi-turn Multi-modal Interaction — Yao et al. (2026) (arXiv:2604.14656, 2026)
## What this evaluates
Evaluates multi-turn, multi-modal dialogue capabilities for radiology patient education, testing how well models personalize explanations based on hidden patient profiles and ground visual annotations in medical images. It probes the alignment between textual explanations and drawn/image-marked evidence, as well as safety and scope adherence in medical contexts.
## Datasets
- **MedImageEdu** — total ?; splits: test (-1)
## Metrics
- `MedImageEdu Overall` **(primary)** — range: [0, 1]
- Composite score averaging five sub-dimensions: Consultation, Safety & Scope, Language Quality, Drawing Quality, and Image-Text Response Quality. Scores are normalized to [0, 1] and computed via an automated judge evaluating multi-turn interactions.
## Input / output format
**Input**: Multi-turn dialogue turns containing patient questions, radiology images, and a hidden patient profile (education level, health literacy, emotional state). Models interact with a drawing tool to annotate images.
**Output**: Textual responses and image annotations/drawings grounded in radiology reports, generated turn-by-turn to address patient queries while adhering to safety and scope constraints.
## Scoring recipe
```python
def compute_medimageedu_score(predictions, gold):
dims = ['Consultation', 'Safety & Scope', 'Language Quality', 'Drawing Quality', 'Image-Text Response Quality']
dim_scores = {d: [] for d in dims}
for turn in predictions:
for d in dims:
dim_scores[d].append(judge_score(turn, d))
block_scores = {d: sum(scores)/len(scores) for d, scores in dim_scores.items()}
overall = sum(block_scores.values()) / len(block_scores)
return overall
```
## Common pitfalls
- Rewarding fluent final prose while ignoring weak visual grounding or incorrect image selection.
- Assuming strong multi-turn dialogue quality implies strong multimodal grounding capabilities.
- Treating safety failures as rare edge cases rather than systematic bottlenecks across model sizes.
## Evidence (verbatim from paper)
> GPT-5.1 achieves the best MedImageEdu Overall score of 0.840, followed by GPT-5-mini at 0.810. Among open-weight models, Qwen3-VL-32B is strongest at 0.677, close to GPT-5-nano at 0.680, while MedGemma-27B follows at 0.606.
## Citation
```bibtex
@misc{yao2026medimageedu,
title={Rethinking Patient Education as Multi-turn Multi-modal Interaction},
author={Yao et al. (2026)},
year={2026},
note={arXiv:2604.14656}
}
```
- arXiv: 2604.14656
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!