Views
No views yet
| Metric | Value | Source |
|---|---|---|
| Mean Dice (OASIS test split, n=80) | 0.925 ± 0.013 | Reproduction of paper Table 1 row 1 (paper: 0.93 ± 0.012, within 1σ) |
| INR parameters | 83 K | – |
| Seg head parameters | 645 | – |
| Inference time (per slice, A100 BF16) | ~0.3 s | inner_steps=100 |
| ID | Class |
|---|---|
| 0 | background |
| 1 | CSF / ventricles |
| 2 | cortex |
| 3 | white matter |
| 4 | deep grey matter (thalamus, caudate, putamen, hippocampus, etc.) |
1from inr_brain_seg import InrBrainSeg
2
3model = InrBrainSeg.from_pretrained("basimazam/metaseg-siren-2d-5cls")
4mask = model.segment("path/to/T1.nii.gz")
5# mask is a numpy.ndarray of integer class labels, same spatial shape as the input.[0, 1]. If you pass a full 3D NIfTI volume, the wrapper extracts the mid-coronal
slice automatically; see preprocessing.json for the canonical recipe.1inr-seg-single \
2 --model basimazam/metaseg-siren-2d-5cls \
3 --input /data/T1.nii.gz \
4 --output /data/T1_seg.nii.gzomega_0=30, 3 hidden layers of width 128.basimazam/metaseg-siren-adapter-v2-ixi
which lifts cross-site Dice to 0.69 with a 65,920-parameter MLP adapter.results/RESULTS.md
in the accompanying repository, including hardware, wall-clock, seed values,
and paper-deviation discussion.1@inproceedings{azam2026inrbrainseg,
2 title = {Coordinate-Field Implicit Networks for Cross-Site Brain MRI Segmentation},
3 author = {Azam, Basim},
4 booktitle = {Asian Conference on Computer Vision (ACCV)},
5 year = {2026}
6}
7
8@inproceedings{vyas2025metaseg,
9 title = {Fit Pixels, Get Labels: Meta-Learned Implicit Networks for Image Segmentation},
10 author = {Vyas, Kushal and others},
11 booktitle = {MICCAI},
12 year = {2025}
13}
14
15@inproceedings{sitzmann2020siren,
16 title = {Implicit Neural Representations with Periodic Activation Functions},
17 author = {Sitzmann, Vincent and others},
18 booktitle = {NeurIPS},
19 year = {2020}
20}