basimazam/metaseg-siren-2d-25cls
MetaSeg-SIREN 2D 25-class (OASIS)
Meta-learned SIREN implicit neural network for 25-class brain MRI segmentation on neurite-OASIS coronal slices. Trained with the MetaSeg recipe (Vyas et al., MICCAI 2025) — 5,000 outer-loop MAML iterations + 4,001 classifier-only finetune epochs.
Performance
Output classes: 1 background + 24 foreground anatomical regions (left/right cortex, left/right WM, thalamus, caudate, putamen, pallidum, hippocampus, amygdala, accumbens, brainstem, cerebellum). The 25-vs-24 difference is a naming convention: the paper counts 24 foreground labels; this checkpoint includes class 0 (background) for a total of 25 softmax bins. Both refer to the same seg24 files in the neurite-OASIS release.
Usage
from inr_brain_seg import InrBrainSeg
model = InrBrainSeg.from_pretrained("basimazam/metaseg-siren-2d-25cls")
mask = model.segment("path/to/T1.nii.gz")Training details
- Backbone: SIREN with
omega_0=30, 3 hidden layers of width 512. - Outer loop: 5,000 MAML iterations, lr 1e-4, inner_steps=2.
- Classifier finetune: 4,001 epochs, lr 5e-5.
- Test-time inner loop: K=100 steps at lr 1e-4.
Training data: 314 neurite-OASIS subjects. Validation: 21. Test: 80.
Intended use
Research only. See the 5-class card for cross-site / clinical-use caveats.
Citation
@inproceedings{azam2026inrbrainseg,
title = {Coordinate-Field Implicit Networks for Cross-Site Brain MRI Segmentation},
author = {Azam, Basim},
booktitle = {ACCV},
year = {2026}
}License
Apache License 2.0.
