Using Auto3DSeg output with MONAI Label #1714
-
Hello, I have started to use Auto3DSeg, and I am very impressed with it's performance. I understand it outputs MONAI Bundles. I was under the impression that MONAI Label could be configured to use MONAI Bundles, but the structure of the Auto3DSeg bundles looks different from other MONAI Label bundles I have used. Is there a way I can take an algorithm created using Auto3DSeg and use it with MONAI Label to execute active learning? At the very least it would be nice if I could export the network setup so I can use the .pt file to load weights. Any advice and guidance would be appreciated. Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @landynfrancis, Very good question. Currently, Auto3DSeg models can't be consumed in MONAI Label. Some changes have to be made in the radiology app (segmentation model) before using the pre-trained model from Auto3DSeg. Specifically the Here you can see the radiology folder and a video showing how it works. Auto3DSeg-MONAILabel.mp4The Currently, this is only for inference. Hope this helps as inspiration. |
Beta Was this translation helpful? Give feedback.
Hi @landynfrancis,
Very good question.
Currently, Auto3DSeg models can't be consumed in MONAI Label. Some changes have to be made in the radiology app (segmentation model) before using the pre-trained model from Auto3DSeg. Specifically the
lib/configs/segmentation.py
andlib/infers/segmentation.py
filesAs an example, I've modified the MONAI Label radiology app (segmentation model) for the ICrH model available in the Slicer MONAI Auto3DSeg module - This ICrH model was trained using the SegResNet architecture.
Here you can see the radiology folder and a video showing how it works.
radiology.zip
Auto3DSeg-MONAILabel.mp4
The
model.pt
file fromsegresnet_0/model
should be renamed to p…