You can find the published version of our paper in Nature Scientific Reports here. If you use SALT, please cite the tool as follows:
Becker, S.S., Baldini, G., Schmidt, C.S. et al. SALT: Introducing a framework for hierarchical segmentations in medical imaging using label trees. Sci Rep 15, 44140 (2025). https://doi.org/10.1038/s41598-025-31639-1
This segmentation framework was developed at the Institute for AI in Medicine of the University Hospital Essen by the SHIP.AI team. The framework can be used for any 2D or 3D segmentation task that exhibits a hierarchical label structure. In our case, we applied this to medical imaging and provided the segmentation of 145 different structures in the human body.
The model is very fast (averaging 35 seconds for a 1000 whole-body!) and can segment 113 body regions in a single pass.
For training, the dataset folder should have the following structure:
data/
├── lits/
├── kits/
├── saros/
├── ...
Each dataset should contain the following files and folders:
data/
├── saros/
│ ├── labels.txt
| ├── tree-labels.txt
│ ├── train/
│ │ ├── images/
│ │ │ ├── s0001.nii.gz
│ │ │ ├── s0002.nii.gz
│ │ ├── labels/
│ │ │ ├── s0001.nii.gz
│ │ │ ├── s0002.nii.gz
│ ├── val/
│ │ ├── images
│ │ │ ├── ...
│ │ ├── labels
│ │ │ ├── ...
│ ├── test/
│ │ ├── images
│ │ │ ├── ...
│ │ ├── labels
The datasets do not need to include all three train, val, and test folders; they may only include a test set.
The files labels.txt and tree-labels.txt contain the dataset's labels. labels.txt should contain the label names, while tree-labels.txt should define the hierarchical structure of the labels from the tree. In the labels folder, you can find examples of these files, and in the conversion folder, you can find examples of how the data was converted to this format.
Once the data is set up, you can build the docker image with
docker build -t shipai/salt .and then run the container with
docker run -it --rm \
--runtime=nvidia \
--network host \
--user $(id -u):$(id -g) \
--shm-size=8g --ulimit memlock=-1 --ulimit stack=67108864 \
-v /path/to/storage:/storage \
-e NVIDIA_VISIBLE_DEVICES=0,1,2 \
shipai/saltOnce the container is running, you can use the following commands to train the models:
python3 -m salt.train \
--data-dir /storage/datasets/data/ \
--mixed-precision \
--train-dir /storage/models/your-model-name \
--epochs 1000 --batch-size 3 --gpus 0 1 2 --sink-weight 0.0The number of gpus and the batch size you use depends on how many GPUs you made available in your docker run command.
Once the training is finished, you can export the model to a single model file:
python -m salt.export \
--train-dir /storage/models/your-model-name \
--output-dir /storage/models/exports/your-model-nameYou can build the docker image with
docker build -t shipai/salt .and then run the container with
docker run -it --rm \
--runtime=nvidia \
--network host \
--user $(id -u):$(id -g) \
--shm-size=8g --ulimit memlock=-1 --ulimit stack=67108864 \
-v /path/to/storage:/storage \
-e NVIDIA_VISIBLE_DEVICES=0,1,2 \
shipai/saltOnce the container is running, you can compute the predictions for your dataset using our model
python -m salt.predict \
--data-dir /storage/datasets/data/dataset-name/images \
--output_dir /storage/results/your-model-name/dataset-nameor run it with your newly trained model
python -m salt.predict \
--model-file /storage/models/exports/your-model-name/model.pt \
--config-file /storage/models/exports/your-model-name/config.pkl \
--data-dir /storage/datasets/data/dataset-name/images \
--output_dir /storage/results/your-model-name/dataset-nameNote that for the predictions, the data does not need to be in a particular format, and any folder containing NIfTI files can be used as input.
If your dataset has a ground truth, you can evaluate the predictions from outside the container using:
poetry run python -m salt.classic_evaluate \
--config-file /path/to/the/model/config.pkl \
--data-dir /path/to/the/data \
--predictions-dir /path/to/the/predictions \
--output-dir /path/for/results
