Skip to content

Commit 3bb8ab2

Browse files
committed
ADD: add documentation readme for training BraTS model
Signed-off-by: Cavan Riley <cavan-riley@uiowa.edu>
1 parent 349c529 commit 3bb8ab2

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

sample-apps/radiology/README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,34 @@ the model to learn on new organ.
215215
- Output: N channels representing the segmented organs/tumors/tissues
216216
</details>
217217

218+
<details id="segmentation-brats">
219+
<summary>
220+
<strong>Segmentation BraTS</strong> is a model based on UNet for automated multilabel brain tumor segmentation. This model is designed for multi-label segmentation tasks using pre-aligned, multi-modal MRI volumes.
221+
</summary>
222+
223+
> monailabel start_server --app workspace/radiology --studies workspace/images --conf models segmentation_brats --conf input_channels 4 --conf multi_file true
224+
225+
- Additional Configs *(pass them as **--conf name value** while starting MONAILabel Server)*
226+
227+
| Name | Values | Description |
228+
|----------------------|------------------|--------------------------------------------------------------------------|
229+
| use_pretrained_model | **true**, false | Set to `false` to skip loading pretrained weights |
230+
| preload | true, **false** | Preload model into GPU at startup |
231+
| scribbles | **true**, false | Set to `false` to disable scribble-based interactive segmentation models |
232+
233+
- Network: This model uses the [UNet](https://docs.monai.io/en/latest/networks.html#unet) as the default network. Researchers can define their own network or use one of the listed [MONAI network architectures](https://docs.monai.io/en/latest/networks.html)
234+
- Labels
235+
```json
236+
{
237+
"tumor core": 1,
238+
"whole tumor": 2,
239+
"enhancing tumor": 3
240+
}
241+
```
242+
- Dataset: The model is trained over the dataset: https://www.med.upenn.edu/cbica/brats2020/
243+
- Inputs: 4 channels for the 4 BRATS image modalities
244+
- Output: N channels representing the segmented tumors/tissues
245+
</details>
218246

219247
<details id="segmentation-spleen">
220248
<summary>

0 commit comments

Comments
 (0)