You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PSAT addresses pediatric segmentation challenges by combining:
10
-
-**Training Plans:** Derived from adult, pediatric, or mixed data ($P_a$, $P_p$, $P_m$).
11
-
-**Learning Sets:** Adult-only, pediatric-only, or mixed ($S_a$, $S_p$, $S_m$).
12
-
-**Augmentations:** Default ($A_d$) and contraction-based ($A_c$) strategies.
13
-
-**Transfer Learning:** Direct inference ($T_o$), fine-tuning ($T_p$), or continual learning ($T_m$).
26
+
**PSAT** addresses pediatric segmentation challenges by leveraging adult, pediatric, and mixed datasets, advanced augmentation strategies, and transfer learning. It is designed for researchers and practitioners working on medical image segmentation, especially in pediatric contexts.
-**Flexible Training Plans:** Use adult, pediatric, or mixed data ($P_a$, $P_p$, $P_m$)
32
+
-**Customizable Learning Sets:** Adult-only, pediatric-only, or mixed ($S_a$, $S_p$, $S_m$)
33
+
-**Augmentation Strategies:** Default ($A_d$) and contraction-based ($A_c$)
34
+
-**Transfer Learning:** Direct inference ($T_o$), fine-tuning ($T_p$), continual learning ($T_m$)
35
+
-**Pretrained Models:** Ready-to-use checkpoints for nnU-Net
36
+
-**Evaluation Scripts:** For fast metrics computation
37
+
17
38
## Citation
18
39
If you use this code, please cite our paper:
19
40
@@ -27,18 +48,56 @@ If you use this code, please cite our paper:
27
48
}
28
49
```
29
50
51
+
This repository includes a `CITATION.cff` file for standardized citation metadata. You can also use the "Cite this repository" button on GitHub to obtain citation formats automatically.
52
+
53
+
54
+
## Checkpoints & Pretrained Models
55
+
56
+
We provide two model checkpoints for nnU-Net:
57
+
-**mixed_model_continual_learning.zip**
58
+
-**pure_pediatric_model.zip**
59
+
60
+
### Installing Pretrained Models
61
+
62
+
1.**Download Pretrained Weights:**
63
+
- Go to the [GitHub Releases](https://github.com/ICANS-Strasbourg/PSAT/releases) page.
64
+
- Download `mixed_model_continual_learning.zip` and `pure_pediatric_model.zip`.
Replace `<input_images_dir>`, `<output_dir>`, `<dataset_id>`, `<trainer_name>`, and `<task_name>` as appropriate. See [nnUNet documentation](https://github.com/MIC-DKFZ/nnUNet) for details.
79
+
80
+
For more details, see the [Resources](resources/resources.md) section.
-**Description:** A collection of pediatric CT scans with expert-annotated organ and tumor segmentations, suitable for training and evaluating medical image segmentation models.
7
+
-**Metadata:**
8
+
-`TCIA/meta.csv`: Contains patient IDs, scan information, and basic demographic data for each case in the dataset.
4
9
5
10
## TotalSegmentator Dataset
6
11
7
-
## Checkpoints
12
+
-**Source:**[TotalSegmentator on Zenodo](https://zenodo.org/records/10047292)
13
+
-**Description:** A large-scale dataset of adult CT scans with comprehensive multi-organ segmentations, designed for general-purpose medical image segmentation tasks.
14
+
-**Metadata:**
15
+
-`TotalSegmentator/meta.csv`: Contains scan identifiers, acquisition parameters, and summary statistics for each scan in the dataset.
16
+
17
+
## Using Pretrained nnU-Net Models
18
+
19
+
We provide two nnU-Net v2 model checkpoints:
20
+
-`mixed_model_continual_learning.zip`
21
+
-`pure_pediatric_model.zip`
8
22
9
-
We provide two model checkpoints that you can use directly with nnU-Net:
23
+
You can use these as pretrained weights for inference or further fine-tuning with nnU-Net v2.
10
24
11
-
-**mixed_model_continual_learning.zip**
25
+
### 1. Download the Model Weights
12
26
13
-
-**pure_pediatric_model.zip**
27
+
Go to the [GitHub Releases](https://github.com/ICANS-Strasbourg/PSAT/releases) page and download the desired zip files. Place them in a directory of your choice (e.g., `resources/checkpoints/`).
14
28
15
-
### Installing Pretrained Models
29
+
### 2. Install the Pretrained Model
16
30
17
-
nnU-Net offers a convenient utility to install pretrained models from a zip archive. Follow these steps:
31
+
Use the nnU-Net v2 utility to install the model from the zip file:
18
32
19
-
1.**Downloading Pretrained Weights:**
20
-
Go to the [GitHub Releases](https://github.com/ICANS-Strasbourg/PSAT/releases) page.
0 commit comments