carebench-eval
When Does Multimodal Learning Help in Healthcare? A Benchmark on EHR and Chest X-Ray Fusion — Yin et al. (2026) (arXiv:2602.23614, 2026)
What this evaluates
Evaluates multimodal fusion of Electronic Health Records (EHR) and Chest X-Rays (CXR) for clinical decision support, specifically testing robustness to missing modalities, temporal imbalance, and subgroup fairness across phenotyping, mortality, and length-of-stay prediction.
Datasets
Metrics
AUROC, AUPRC, F1, Accuracy, Cohen's Kappa (primary) — range: [0, 1]
- AUROC measures threshold-independent discrimination; AUPRC focuses on positive class performance; F1 is the harmonic mean of precision and recall; Accuracy is the proportion of correct predictions; Cohen's Kappa weighted quadratic penalizes ordinal misclassifications proportionally to their distance.
Input / output format
Input: Patient-level EHR time-series data and corresponding Chest X-Ray images, restricted to a fixed prediction window (e.g., first 48 hours of ICU stay).
Output: Multi-label binary vector (25 phenotypes), binary mortality prediction (survive/die), or multi-class ordinal label for remaining length of stay (RLOS: 2–3, 3–4, 4–5, 5–6, 6–7, 7–14, 14+ days).
Scoring recipe
def calc_metrics(y_true, y_pred, y_prob=None):
if y_prob is None: y_prob = y_pred
metrics = {
'AUROC': roc_auc_score(y_true, y_prob, average='macro'),
'AUPRC': average_precision_score(y_true, y_prob, average='macro'),
'F1': f1_score(y_true, y_pred, average='macro'),
'ACC': accuracy_score(y_true, y_pred)
}
if task == 'LoS':
metrics['Kappa'] = cohen_kappa_score(y_true, y_pred, weights='quadratic')
return metrics
Common pitfalls
- Evaluating only on the matched subset (complete modalities) overestimates real-world performance; the base cohort with missing modalities must be used for clinical relevance.
- Temporal imbalance in EHR data and modality missingness rapidly degrade multimodal gains, which is often overlooked in standard benchmarks.
- Multimodal fusion does not automatically improve algorithmic fairness; subgroup disparities depend on demographic sensitivity differences rather than modality count.
Evidence (verbatim from paper)
To ensure comparability, we adopt patient-level train/validation/test splits and report established metrics tailored to each task. ... we employ a suite of metrics including Area Under the Receiver Operating Characteristic Curve (AUROC), Area Under the Precision-Recall Curve (AUPRC), F1 score, precision, recall, specificity, and accuracy (ACC). ... Performance is evaluated using the ACC, F1 score, and Cohen’s Kappa weighted quadratic
Citation
@misc{yin2026carebench,
title={When Does Multimodal Learning Help in Healthcare? A Benchmark on EHR and Chest X-Ray Fusion},
author={Yin et al. (2026)},
year={2026},
note={arXiv:2602.23614}
}
1---2name: carebench-eval3description: Evaluates multimodal fusion of Electronic Health Records (EHR) and Chest X-Rays (CXR) for clinical decision support, specifically testing robustness to missing modalities, temporal imbalance, and subgroup fairness across phenotyping, mortality, and length-of-stay prediction. Use when the user wants to benchmark on CareBench, or asks about evaluating this task. Reports AUROC, AUPRC, F1, Accuracy, Cohen's Kappa.4---56# carebench-eval78> When Does Multimodal Learning Help in Healthcare? A Benchmark on EHR and Chest X-Ray Fusion — Yin et al. (2026) (arXiv:2602.23614, 2026)910## What this evaluates1112Evaluates multimodal fusion of Electronic Health Records (EHR) and Chest X-Rays (CXR) for clinical decision support, specifically testing robustness to missing modalities, temporal imbalance, and subgroup fairness across phenotyping, mortality, and length-of-stay prediction.1314## Datasets1516- **CareBench** — total ?; splits: train (-1), val (-1), test (-1); repo https://github.com/jakeykj/CareBench1718## Metrics1920- `AUROC, AUPRC, F1, Accuracy, Cohen's Kappa` **(primary)** — range: [0, 1]21 - AUROC measures threshold-independent discrimination; AUPRC focuses on positive class performance; F1 is the harmonic mean of precision and recall; Accuracy is the proportion of correct predictions; Cohen's Kappa weighted quadratic penalizes ordinal misclassifications proportionally to their distance.2223## Input / output format2425**Input**: Patient-level EHR time-series data and corresponding Chest X-Ray images, restricted to a fixed prediction window (e.g., first 48 hours of ICU stay).2627**Output**: Multi-label binary vector (25 phenotypes), binary mortality prediction (survive/die), or multi-class ordinal label for remaining length of stay (RLOS: 2–3, 3–4, 4–5, 5–6, 6–7, 7–14, 14+ days).2829## Scoring recipe3031```python32def calc_metrics(y_true, y_pred, y_prob=None):33 if y_prob is None: y_prob = y_pred34 metrics = {35 'AUROC': roc_auc_score(y_true, y_prob, average='macro'),36 'AUPRC': average_precision_score(y_true, y_prob, average='macro'),37 'F1': f1_score(y_true, y_pred, average='macro'),38 'ACC': accuracy_score(y_true, y_pred)39 }40 if task == 'LoS':41 metrics['Kappa'] = cohen_kappa_score(y_true, y_pred, weights='quadratic')42 return metrics43```4445## Common pitfalls4647- Evaluating only on the matched subset (complete modalities) overestimates real-world performance; the base cohort with missing modalities must be used for clinical relevance.48- Temporal imbalance in EHR data and modality missingness rapidly degrade multimodal gains, which is often overlooked in standard benchmarks.49- Multimodal fusion does not automatically improve algorithmic fairness; subgroup disparities depend on demographic sensitivity differences rather than modality count.5051## Evidence (verbatim from paper)5253> To ensure comparability, we adopt patient-level train/validation/test splits and report established metrics tailored to each task. ... we employ a suite of metrics including Area Under the Receiver Operating Characteristic Curve (AUROC), Area Under the Precision-Recall Curve (AUPRC), F1 score, precision, recall, specificity, and accuracy (ACC). ... Performance is evaluated using the ACC, F1 score, and Cohen’s Kappa weighted quadratic5455## Citation5657```bibtex58@misc{yin2026carebench,59 title={When Does Multimodal Learning Help in Healthcare? A Benchmark on EHR and Chest X-Ray Fusion},60 author={Yin et al. (2026)},61 year={2026},62 note={arXiv:2602.23614}63}64```6566- arXiv: 2602.23614