|
1 | 1 | # MONAI and nnU-Net Integration
|
2 | 2 |
|
3 |
| -[nnU-Net](https://github.com/MIC-DKFZ/nnUNet) is an open-source deep learning framework that has been specifically designed for medical image segmentation. And nnU-Net is a state-of-the-art deep learning framework that is tailored for medical image segmentation. It builds upon the popular U-Net architecture and incorporates various advanced features and improvements, such as cascaded networks, novel loss functions, and pre-processing steps. nnU-Net also provides an easy-to-use interface that allows users to train and evaluate their segmentation models quickly. nnU-Net has been widely used in various medical imaging applications, including brain segmentation, liver segmentation, and prostate segmentation, among others. The framework has consistently achieved state-of-the-art performance in various benchmark datasets and challenges, demonstrating its effectiveness and potential for advancing medical image analysis. |
| 3 | +[nnU-Net](https://github.com/MIC-DKFZ/nnUNet) is an open-source deep learning framework that has been specifically designed for medical image segmentation. nnU-Net is a state-of-the-art deep learning framework that is tailored for medical image segmentation. It builds upon the popular U-Net architecture and incorporates various advanced features and improvements, such as cascaded networks, novel loss functions, and pre-processing steps. nnU-Net also provides an easy-to-use interface that allows users to train and evaluate their segmentation models quickly. nnU-Net has been widely used in various medical imaging applications, including brain segmentation, liver segmentation, and prostate segmentation, among others. The framework has consistently achieved state-of-the-art performance in various benchmark datasets and challenges, demonstrating its effectiveness and potential for advancing medical image analysis. |
4 | 4 |
|
5 | 5 | nnU-Net and MONAI are two powerful open-source frameworks that offer advanced tools and algorithms for medical image analysis. Both frameworks have gained significant popularity in the research community, and many researchers have been using these frameworks to develop new and innovative medical imaging applications.
|
6 | 6 |
|
@@ -73,7 +73,7 @@ Users can also set values of directory variables as options in "input.yaml" if a
|
73 | 73 | dataset_name_or_id: 1 # task-specific integer index (optional)
|
74 | 74 | nnunet_preprocessed: "./work_dir/nnUNet_preprocessed" # directory for storing pre-processed data (optional)
|
75 | 75 | nnunet_raw: "./work_dir/nnUNet_raw_data_base" # directory for storing formated raw data (optional)
|
76 |
| -nnunet_results: "./work_dir/nnUNet_trained_models" # diretory for storing trained model checkpoints (optional) |
| 76 | +nnunet_results: "./work_dir/nnUNet_trained_models" # directory for storing trained model checkpoints (optional) |
77 | 77 | ```
|
78 | 78 |
|
79 | 79 | Once the minimum input information is provided, the user can use the following commands to start the process of the entire nnU-Net pipeline automatically (from model training to model ensemble).
|
@@ -143,7 +143,7 @@ python -m monai.apps.nnunet nnUNetV2Runner predict_ensemble_postprocessing --inp
|
143 | 143 | --run_predict false --run_ensemble false
|
144 | 144 | ```
|
145 | 145 |
|
146 |
| -For utilizing PyTorch DDP in multi-GPU training, the subsequent command is offered to facilitate the training of a singlular model on a specific fold: |
| 146 | +For utilizing PyTorch DDP in multi-GPU training, the subsequent command is offered to facilitate the training of a singular model on a specific fold: |
147 | 147 |
|
148 | 148 | ```bash
|
149 | 149 | ## [component] multi-gpu training for a single model
|
|
0 commit comments