Evaluates the accuracy of deep learning models in segmenting brain tumor subregions and boundaries on low-field MRI scans from Sub-Saharan Africa. It probes the model's ability to handle regional imaging protocol limitations and topological deformations in medical image segmentation. Use when the user wants to benchmark on BraTS-Africa, or asks about evaluating this task. Reports Dice Similarity Coefficient (DSC).
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill brats-africa-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Brats Africa Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-brats-africa-eval)More formats (shields.io, HTML) on the badges page.
---
name: brats-africa-eval
description: Evaluates the accuracy of deep learning models in segmenting brain tumor subregions and boundaries on low-field MRI scans from Sub-Saharan Africa. It probes the model's ability to handle regional imaging protocol limitations and topological deformations in medical image segmentation. Use when the user wants to benchmark on BraTS-Africa, or asks about evaluating this task. Reports Dice Similarity Coefficient (DSC).
metadata:
skill_kind: dataset_eval
source_arxiv: 2604.15964
bibtex_key: bohara2026topology
confidence: high
---
# brats-africa-eval
> Topology-Driven Fusion of nnU-Net and MedNeXt for Accurate Brain Tumor Segmentation on Sub-Saharan Africa Dataset — Bohara et al. (2026) (arXiv:2604.15964, 2026)
## What this evaluates
Evaluates the accuracy of deep learning models in segmenting brain tumor subregions and boundaries on low-field MRI scans from Sub-Saharan Africa. It probes the model's ability to handle regional imaging protocol limitations and topological deformations in medical image segmentation.
## Datasets
- **BraTS-Africa** — total ?; splits: test (-1)
## Metrics
- `Dice Similarity Coefficient (DSC)` **(primary)** — range: [0, 1]
- DSC = 2|A ∩ B| / (|A| + |B|), where A and B are the predicted and ground truth segmentation masks. Ranges from 0 to 1, with 1 indicating perfect overlap.
- `Normalized Surface Distance (NSD)` — range: [0, 1]
- NSD = 1 - (1/N) * Σ min(dist(a, B), tol) + min(dist(b, A), tol) / (2*tol), evaluated with a 1.0 mm tolerance. Ranges from 0 to 1, with 1 indicating perfect surface alignment.
## Input / output format
**Input**: 3D low-field MRI scans of brain tumors from the Sub-Saharan Africa dataset.
**Output**: Pixel-wise segmentation masks for three tumor subregions: SNFH, NETC, and ET, plus a Legacy region mask.
## Scoring recipe
```python
def compute_dsc(pred, gt):
intersection = np.sum(pred & gt)
return 2.0 * intersection / (np.sum(pred) + np.sum(gt))
def compute_nsd(pred, gt, tol=1.0):
# Compute surface distances between pred and gt masks
# NSD = 1 - (1/N) * sum(min(d_a, tol) + min(d_b, tol)) / (2*tol)
# Returns value in [0, 1]
pass
```
## Common pitfalls
- NSD is computed with a specific 1.0 mm tolerance, which must be explicitly set to match reported values.
- DSC is reported per subregion (SNFH, NETC, ET) and per anatomical grouping (Legacy, Lesion); averaging across regions without weighting can misrepresent performance.
- Pre-training on BraTS-2025 Task 1 is part of the evaluation protocol, not just training; models must be fine-tuned on BraTS-Africa before testing.
## Evidence (verbatim from paper)
> Our Baseline Model, nnU-Net 3D full resolution performed well overall on the BraTS-Africa dataset achieving high Dice scores for each tumor subregion: 0.930 for SNFH, 0.906 for NETC, and 0.906 for ET. The boundary alignment was demonstrated on NSD with a tolerance of 1.0 mm, for SNFH (0.830), NETC (0.827), and ET (0.894).
## Citation
```bibtex
@misc{bohara2026topology,
title={Topology-Driven Fusion of nnU-Net and MedNeXt for Accurate Brain Tumor Segmentation on Sub-Saharan Africa Dataset},
author={Bohara et al. (2026)},
year={2026},
note={arXiv:2604.15964}
}
```
- arXiv: 2604.15964
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!