medlaybench-v-eval
MedLayBench-V: A Large-Scale Benchmark for Expert-Lay Semantic Alignment in Medical Vision Language Models — Jang et al. (2026) (arXiv:2604.05738, 2026)
What this evaluates
Evaluates the ability of medical vision-language models to align expert clinical terminology with patient-accessible layman language while preserving diagnostic accuracy. It measures lexical overlap, readability, clinical factuality, and zero-shot image-text retrieval performance.
Datasets
Metrics
Recall@K (R@1, R@5, R@10) (primary) — range: percent
- Measures retrieval accuracy by checking if the ground-truth match appears within the top-K ranked candidates based on cosine similarity of L2-normalized embeddings.
BLEU-4, ROUGE-L, METEOR — range: [0, 1]
- Standard n-gram and sequence overlap metrics measuring structural similarity and lexical overlap between expert and layman captions.
LENS, RaTEScore, GREEN — range: [0, 1]
- LENS is a learnable metric for text simplification. RaTEScore and GREEN are model-based metrics designed to detect hallucinations and ensure clinical correctness in radiology reports.
FKGL, CLI, DCRS, SMOG, FRE — range: other
- Standard readability formulas quantifying text accessibility, grade level, and reading ease.
Input / output format
Input: Image and text pair (for retrieval) or image with prompt (for captioning).
Output: Ranked list of candidate texts/images (retrieval) or generated natural language caption (captioning).
Scoring recipe
def compute_recall_at_k(sim_matrix, k):
# sim_matrix: [N, N] cosine similarities between images and texts
top_k_indices = np.argsort(sim_matrix, axis=1)[:, -k:]
correct = np.sum(np.diag(top_k_indices) == np.arange(len(sim_matrix)))
return correct / len(sim_matrix) * 100
Common pitfalls
- Confusing expert vs. layman caption performance, as the benchmark reports both side-by-side.
- Applying fine-tuning or prompt engineering, which violates the zero-shot evaluation protocol.
- Ignoring domain adaptation effects, as general-domain VLMs significantly underperform medical-specific models on this benchmark.
Evidence (verbatim from paper)
To assess whether the simplified text preserves essential semantic information for automated analysis, we evaluate zero-shot text-to-image retrieval performance. We report Recall@K (R@1, R@5, R@10) to measure retrieval accuracy using the generated captions.
Citation
@misc{jang2026medlaybenchv,
title={MedLayBench-V: A Large-Scale Benchmark for Expert-Lay Semantic Alignment in Medical Vision Language Models},
author={Jang et al. (2026)},
year={2026},
note={arXiv:2604.05738}
}
1---2name: medlaybench-v-eval3description: Evaluates the ability of medical vision-language models to align expert clinical terminology with patient-accessible layman language while preserving diagnostic accuracy. It measures lexical overlap, readability, clinical factuality, and zero-shot image-text retrieval performance. Use when the user wants to benchmark on MedLayBench-V, or asks about evaluating this task. Reports Recall@K (R@1, R@5, R@10).4---56# medlaybench-v-eval78> MedLayBench-V: A Large-Scale Benchmark for Expert-Lay Semantic Alignment in Medical Vision Language Models — Jang et al. (2026) (arXiv:2604.05738, 2026)910## What this evaluates1112Evaluates the ability of medical vision-language models to align expert clinical terminology with patient-accessible layman language while preserving diagnostic accuracy. It measures lexical overlap, readability, clinical factuality, and zero-shot image-text retrieval performance.1314## Datasets1516- **MedLayBench-V** — total 79789; splits: train (-1), val (-1), test (9927); repo https://github.com/janghana/MedLayBench-V1718## Metrics1920- `Recall@K (R@1, R@5, R@10)` **(primary)** — range: percent21 - Measures retrieval accuracy by checking if the ground-truth match appears within the top-K ranked candidates based on cosine similarity of L2-normalized embeddings.22- `BLEU-4, ROUGE-L, METEOR` — range: [0, 1]23 - Standard n-gram and sequence overlap metrics measuring structural similarity and lexical overlap between expert and layman captions.24- `LENS, RaTEScore, GREEN` — range: [0, 1]25 - LENS is a learnable metric for text simplification. RaTEScore and GREEN are model-based metrics designed to detect hallucinations and ensure clinical correctness in radiology reports.26- `FKGL, CLI, DCRS, SMOG, FRE` — range: other27 - Standard readability formulas quantifying text accessibility, grade level, and reading ease.2829## Input / output format3031**Input**: Image and text pair (for retrieval) or image with prompt (for captioning).3233**Output**: Ranked list of candidate texts/images (retrieval) or generated natural language caption (captioning).3435## Scoring recipe3637```python38def compute_recall_at_k(sim_matrix, k):39 # sim_matrix: [N, N] cosine similarities between images and texts40 top_k_indices = np.argsort(sim_matrix, axis=1)[:, -k:]41 correct = np.sum(np.diag(top_k_indices) == np.arange(len(sim_matrix)))42 return correct / len(sim_matrix) * 10043```4445## Common pitfalls4647- Confusing expert vs. layman caption performance, as the benchmark reports both side-by-side.48- Applying fine-tuning or prompt engineering, which violates the zero-shot evaluation protocol.49- Ignoring domain adaptation effects, as general-domain VLMs significantly underperform medical-specific models on this benchmark.5051## Evidence (verbatim from paper)5253> To assess whether the simplified text preserves essential semantic information for automated analysis, we evaluate zero-shot text-to-image retrieval performance. We report Recall@K (R@1, R@5, R@10) to measure retrieval accuracy using the generated captions.5455## Citation5657```bibtex58@misc{jang2026medlaybenchv,59 title={MedLayBench-V: A Large-Scale Benchmark for Expert-Lay Semantic Alignment in Medical Vision Language Models},60 author={Jang et al. (2026)},61 year={2026},62 note={arXiv:2604.05738}63}64```6566- arXiv: 2604.05738