ram-h1200-eval
RAM-H1200: A Unified Evaluation and Dataset on Hand Radiographs for Rheumatoid Arthritis — Songxiao Yang et al. (2026) (arXiv:2605.05616, 2026)
What this evaluates
Evaluates medical imaging models on hand radiographs for rheumatoid arthritis. It probes anatomical structure modeling through bone segmentation, fine-grained lesion detection via bone erosion segmentation, and clinical reasoning through ordinal scoring of erosion and joint space narrowing severity.
Datasets
Metrics
DSC (primary) — range: [0, 1]
- 2 * |A ∩ B| / (|A| + |B|), measuring overlap between prediction and ground truth masks.
QWK (primary) — range: [-1, 1]
- Cohen's quadratic weighted kappa for ordinal agreement, penalizing larger deviations between predicted and true severity scores more heavily.
ACC — range: [0, 1]
- Proportion of correctly classified instances out of total instances.
MAE — range: other
- Average of absolute differences between predicted and true scores.
REC — range: [0, 1]
- True positives divided by the sum of true positives and false negatives.
PREC — range: [0, 1]
- True positives divided by the sum of true positives and false positives.
Input / output format
Input: Hand radiograph images (and joint region masks for scoring tasks).
Output: Segmentation masks (for bone and erosion) or ordinal severity scores (0-3 for BE and JSN).
Scoring recipe
intersection = np.sum(pred_mask & gold_mask)
union = np.sum(pred_mask) + np.sum(gold_mask)
dsc = 2 * intersection / (union + 1e-6)
from sklearn.metrics import cohen_kappa_score
qwk = cohen_kappa_score(gold_scores, pred_scores, weights='quadratic')
Common pitfalls
- Patient-level splits are strictly enforced to prevent data leakage; image-level random splits would invalidate results.
- Class imbalance is severe for BE scoring, making standard accuracy misleading without balanced accuracy or QWK.
- Bone overlap regions require specialized overlap-aware metrics (DSCO, NSDO) to properly evaluate boundary delineation.
Evidence (verbatim from paper)
All experiments were conducted using patient-level train/validation/test splits to prevent data leakage across subsets. ... For segmentation tasks, we report Dice similarity coefficient (DSC), normalized surface Dice (NSD), volumetric overlap error (VOE), mean surface distance (MSD), recall (REC), and precision (PREC). For SvdH score classification, we report quadratic weighted kappa (QWK), mean absolute error (MAE), balanced accuracy (BACC), accuracy (ACC), within-one accuracy (W1-ACC), positive/negative sensitivity (P/N-SEN), and positive/negative accuracy (P/N-ACC).
Citation
@misc{yang2026ramh1200,
title={RAM-H1200: A Unified Evaluation and Dataset on Hand Radiographs for Rheumatoid Arthritis},
author={Songxiao Yang et al. (2026)},
year={2026},
note={arXiv:2605.05616}
}
1---2name: ram-h1200-eval3description: Evaluates medical imaging models on hand radiographs for rheumatoid arthritis. It probes anatomical structure modeling through bone segmentation, fine-grained lesion detection via bone erosion segmentation, and clinical reasoning through ordinal scoring of erosion and joint space narrowing severity. Use when the user wants to benchmark on RAM-H1200, or asks about evaluating this task. Reports DSC, QWK.4---56# ram-h1200-eval78> RAM-H1200: A Unified Evaluation and Dataset on Hand Radiographs for Rheumatoid Arthritis — Songxiao Yang et al. (2026) (arXiv:2605.05616, 2026)910## What this evaluates1112Evaluates medical imaging models on hand radiographs for rheumatoid arthritis. It probes anatomical structure modeling through bone segmentation, fine-grained lesion detection via bone erosion segmentation, and clinical reasoning through ordinal scoring of erosion and joint space narrowing severity.1314## Datasets1516- **RAM-H1200** — total 1200; splits: train (-1), val (-1), test (-1); repo https://github.com/YSongxiao/RAM-H12001718## Metrics1920- `DSC` **(primary)** — range: [0, 1]21 - 2 * |A ∩ B| / (|A| + |B|), measuring overlap between prediction and ground truth masks.22- `QWK` **(primary)** — range: [-1, 1]23 - Cohen's quadratic weighted kappa for ordinal agreement, penalizing larger deviations between predicted and true severity scores more heavily.24- `ACC` — range: [0, 1]25 - Proportion of correctly classified instances out of total instances.26- `MAE` — range: other27 - Average of absolute differences between predicted and true scores.28- `REC` — range: [0, 1]29 - True positives divided by the sum of true positives and false negatives.30- `PREC` — range: [0, 1]31 - True positives divided by the sum of true positives and false positives.3233## Input / output format3435**Input**: Hand radiograph images (and joint region masks for scoring tasks).3637**Output**: Segmentation masks (for bone and erosion) or ordinal severity scores (0-3 for BE and JSN).3839## Scoring recipe4041```python42intersection = np.sum(pred_mask & gold_mask)43union = np.sum(pred_mask) + np.sum(gold_mask)44dsc = 2 * intersection / (union + 1e-6)4546from sklearn.metrics import cohen_kappa_score47qwk = cohen_kappa_score(gold_scores, pred_scores, weights='quadratic')48```4950## Common pitfalls5152- Patient-level splits are strictly enforced to prevent data leakage; image-level random splits would invalidate results.53- Class imbalance is severe for BE scoring, making standard accuracy misleading without balanced accuracy or QWK.54- Bone overlap regions require specialized overlap-aware metrics (DSCO, NSDO) to properly evaluate boundary delineation.5556## Evidence (verbatim from paper)5758> All experiments were conducted using patient-level train/validation/test splits to prevent data leakage across subsets. ... For segmentation tasks, we report Dice similarity coefficient (DSC), normalized surface Dice (NSD), volumetric overlap error (VOE), mean surface distance (MSD), recall (REC), and precision (PREC). For SvdH score classification, we report quadratic weighted kappa (QWK), mean absolute error (MAE), balanced accuracy (BACC), accuracy (ACC), within-one accuracy (W1-ACC), positive/negative sensitivity (P/N-SEN), and positive/negative accuracy (P/N-ACC).5960## Citation6162```bibtex63@misc{yang2026ramh1200,64 title={RAM-H1200: A Unified Evaluation and Dataset on Hand Radiographs for Rheumatoid Arthritis},65 author={Songxiao Yang et al. (2026)},66 year={2026},67 note={arXiv:2605.05616}68}69```7071- arXiv: 2605.05616