Monai Pathology Nuclick Training #1529
-
Hello, I want to train a nuclick for easier labeling. I create some annotations, make rectangle and submit it. Then try to train nuclick
There is something mentioned called debug-mode by also don't know how to activate it. Thanks alot~ |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @OmarAshkar, From the logs, I can see there are no training samples or the moe is not recognizing them.
As you can see in the config file of the nuclick model, we use the pathology_nuclick_annotation bundle: https://github.com/Project-MONAI/MONAILabel/blob/main/sample-apps/pathology/lib/configs/nuclick.py#L32C24-L32C52 Here is the Readme and more information about that bundle: https://github.com/Project-MONAI/model-zoo/tree/dev/models/pathology_nuclick_annotation FYI: You could run the pathology app as a typical Python main script and without the viewer. For this, please check the main function within the pathology app: https://github.com/Project-MONAI/MONAILabel/blob/main/sample-apps/pathology/main.py#L178-L183 Using your preferred IDE, you could also add breakpoints and debug any errors. I hope this helps, |
Beta Was this translation helpful? Give feedback.
Hi @OmarAshkar,
From the logs, I can see there are no training samples or the moe is not recognizing them.
As you can see in the config file of the nuclick model, we use the pathology_nuclick_annotation bundle: https://github.com/Project-MONAI/MONAILabel/blob/main/sample-apps/pathology/lib/configs/nuclick.py#L32C24-L32C52
Here is the Readme and more information about that bundle: https://github.com/Project-MONAI/model-zoo/tree/dev/models/pathology_nuclick_annotation
FYI: You could run the pathology app as a typical Python main script and without the viewer. For this, please check the main function within t…