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
Copy file name to clipboardExpand all lines: sample-apps/radiology/README.md
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -215,6 +215,34 @@ the model to learn on new organ.
215
215
- Output: N channels representing the segmented organs/tumors/tissues
216
216
</details>
217
217
218
+
<detailsid="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.
| 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
0 commit comments