Evaluates multi-modal medical reasoning and visual question answering capabilities on brain tumor MRI scans. It probes the model's ability to parse clinical features and answer structured questions across three distinct tumor subtypes: metastases, glioblastoma, and meningioma. Use when the user wants to benchmark on BraTS (MET, GLI, MEN cohorts), or asks about evaluating this task. Reports accuracy.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill brats-mri-vqa-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Brats Mri Vqa Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-brats-mri-vqa-eval)More formats (shields.io, HTML) on the badges page.
---
name: brats-mri-vqa-eval
description: Evaluates multi-modal medical reasoning and visual question answering capabilities on brain tumor MRI scans. It probes the model's ability to parse clinical features and answer structured questions across three distinct tumor subtypes: metastases, glioblastoma, and meningioma. Use when the user wants to benchmark on BraTS (MET, GLI, MEN cohorts), or asks about evaluating this task. Reports accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2508.10865
bibtex_key: safari2025performance
confidence: high
---
# brats-mri-vqa-eval
> Performance of GPT-5 in Brain Tumor MRI Reasoning — Safari et al. (2025) (arXiv:2508.10865, 2025)
## What this evaluates
Evaluates multi-modal medical reasoning and visual question answering capabilities on brain tumor MRI scans. It probes the model's ability to parse clinical features and answer structured questions across three distinct tumor subtypes: metastases, glioblastoma, and meningioma.
## Datasets
- **BraTS (MET, GLI, MEN cohorts)** — total ?; splits: test (-1)
## Metrics
- `accuracy` **(primary)** — range: percent
- Percentage of correct answers per cohort, calculated as (number of correct predictions / total number of questions) * 100. A macro-average is computed as the unweighted mean of accuracy across the three cohorts (MET, GLI, MEN).
## Input / output format
**Input**: MRI brain tumor images (triplanar mosaic imaging) paired with structured visual questions.
**Output**: Textual response to the visual question.
## Scoring recipe
```python
def compute_accuracy(predictions, gold):
correct = sum(1 for p, g in zip(predictions, gold) if p.strip().lower() == g.strip().lower())
return (correct / len(gold)) * 100
def compute_macro_average(accuracies):
return sum(accuracies) / len(accuracies)
```
## Common pitfalls
- The macro-average is unweighted, so cohort size imbalances do not affect the final score.
- Accuracy is calculated at the cohort level first, then averaged, rather than globally across all questions combined.
- Zero-shot chain-of-thought prompting was used, which may influence scores compared to direct answering.
## Evidence (verbatim from paper)
> Table 1: Accuracy (%) across the three BraTS tumor cohorts including brain metastases (MET), glioblastoma (GLI), and meningioma (MEN) and the unweighted macro-average over cohorts.
## Citation
```bibtex
@misc{safari2025performance,
title={Performance of GPT-5 in Brain Tumor MRI Reasoning},
author={Safari et al. (2025)},
year={2025},
note={arXiv:2508.10865}
}
```
- arXiv: 2508.10865
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!