File size: 2,951 Bytes
ef7ead2 090bbeb ef7ead2 dbe2280 ef7ead2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | # AutoMSC Baseline Models
Baseline models for **MICCAI FLARE 2026 Task 2 β AutoMSC: Automated Medical Image Segmentation and Classification**.
**Codebase:** [github.com/medfm-flare/AutoMSC-Baseline](https://github.com/medfm-flare/AutoMSC-Baseline)
Each model jointly performs organ/lesion segmentation and case-level classification using a multi-task learning nnUNet framework (`nnUNetCLSTrainerMTL`). Models are trained with 5-fold cross-validation; this repository contains the best-checkpoint weights (`checkpoint_best.pth`) for each fold.
## Datasets
| Dataset | Modality | Cases | Segmentation Labels | Classification Labels (cases per class) | License |
|---|---|---:|---|---|---|
| [Dataset001_BrainMets](https://huggingface.co/cyyu96/AutoMSC-Baselines/blob/main/Dataset001_BrainMets/README.md) | T1, T1c, T2, FLAIR, CT, RTP | 166 | Necrotic Core (1), Enhancing Tumor (2), Edema (3) | Primary Tumor Origin: NSCLC (102), Breast carcinoma (64) | CC BY 4.0 |
| [Dataset002_MU_Glioma](https://huggingface.co/cyyu96/AutoMSC-Baselines/blob/main/Dataset002_MU_Glioma/README.md) | T1c, T1, FLAIR, T2 | 591 | Non-Enhancing Tumor Core (1), Surrounding Non-Enhancing FLAIR Hyperintensity (2), Enhancing Tumor (3), Resection Cavity (4) | Primary Diagnosis: GBM (446), Astrocytoma (87), Others (58) | CC-BY-NC 4.0 |
| [Dataset003_UCSD_PTGB](https://huggingface.co/cyyu96/AutoMSC-Baselines/blob/main/Dataset003_UCSD_PTGB/README.md) | T1c, FLAIR, ADC | 184 | Tumor (1) | IDH Mutation Status: Wild-Type (169), Mutant (15) | CC-BY-NC 4.0 |
| [Dataset004_PICAI](https://huggingface.co/cyyu96/AutoMSC-Baselines/blob/main/Dataset004_PICAI/README.md) | T2, ADC, HBV | 1500 | Prostate (1), Tumor (2) | ISUP Grade: Benign/Indolent (847), ISUP 1 (228), ISUP 2 (234), ISUP 3 (99), ISUP 4 (40), ISUP 5 (52) | CC-BY-NC 4.0 |
| [Dataset005_LUNA25](https://huggingface.co/cyyu96/AutoMSC-Baselines/blob/main/Dataset005_LUNA25/README.md) | CT | 6132 | Nodule (1) | Malignancy: Benign (5,589), Malignant (543) | CC BY 4.0 |
| [Dataset061_PETWB_Lung](https://huggingface.co/cyyu96/AutoMSC-Baselines/blob/main/Dataset061_PETWB_Lung/README.md) | CT, PET | 490 | Lung (1) | Cancer type: Other (42), Lung Cancer (448) | CC BY 4.0 |
| [Dataset062_PETWB_Liver](https://huggingface.co/cyyu96/AutoMSC-Baselines/blob/main/Dataset062_PETWB_Liver/README.md) | CT, PET | 490 | Liver (1) | Cancer type: Other (242), Liver Cancer (248) | CC BY 4.0 |
## Repository Structure
```
DatasetXXX_<name>/
βββ README.md # per-fold results and figures
βββ figures/ # box plots, ROC/PRC, confusion matrix, case samples
βββ nnUNetCLSTrainerMTL__nnUNetPlans__3d_fullres/
βββ dataset.json
βββ dataset_fingerprint.json
βββ plans.json
βββ fold_0/
β βββ checkpoint_best.pth
βββ ...
βββ fold_4/
βββ checkpoint_best.pth
```
|