-
Notifications
You must be signed in to change notification settings - Fork 709
Replies: 2 comments · 7 replies
-
Hi @SachidanandAlle , Could you please help take a look at this ticket? Thanks. |
Beta Was this translation helpful? Give feedback.
All reactions
-
@diazandr3s is our key contributor for deepedit solution.. @artony35 please feel free to reach to Andres for more questions and understanding on deepedit and related transforms... Some wiki can be found at: https://github.com/Project-MONAI/MONAILabel/wiki/DeepEdit |
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 2
-
Thank you @SachidanandAlle! |
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 1
-
Hi @artony35, Thanks for opening this discussion. If you have any questions regarding these, please don't hesitate to ask. More than happy to help |
Beta Was this translation helpful? Give feedback.
All reactions
-
Hi Andres @diazandr3s! Thank you for reaching out! Really appreciate your tutorial. I have been going over it but I am having issues with some of the deepedit transform. That's why I was digging for documentation. I am guessing the issue roots from here since I am trying to train a multiclass model. Would really appreciate your insight on how to transition from single label training to multi-label training. Thank you! |
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 2
-
Hi @artony35, It seems you're using an outdated monailabel version. Please update it to the latest version. The DeepEdit model can be used for multiple label segmentation without major changes. You just need to define the labels (https://github.com/Project-MONAI/MONAILabel/blob/main/sample-apps/radiology/lib/configs/deepedit.py#L46-L55) and deactivate the use of the pretrained model (https://github.com/Project-MONAI/MONAILabel/blob/main/sample-apps/radiology/lib/configs/deepedit.py#L75) Here I explained the same two steps using the segmentation model: https://www.youtube.com/watch?v=3HTh2dqZqew&list=PLtoSVSQ2XzyD4lc-lAacFBzOdv5Ou-9IA&index=3 Please let me know how that goes |
Beta Was this translation helpful? Give feedback.
All reactions
-
i am working with i want ro train a deepedit model on custom dataset ( lung lobe segmentation ) __Using PYTHONPATH=/home/vayu: [2023-05-05 05:06:39,726] [682493] [MainThread] [INFO] (main:285) - USING:: version = False please have a look at apps/radiology/lib/config/deepedit.py import logging import lib.infers from monailabel.interfaces.config import TaskConfig logger = logging.getLogger(name) class DeepEdit(TaskConfig):
Any help for above error. Thank you . |
Beta Was this translation helpful? Give feedback.
All reactions
-
Hi @abhishekmarkad, Thanks for the detailed information. In the config file, you declared these labels:
But the label files have index numbers bigger than 5:
Are you sure the segment called "lung_lower_lobe_right" is represented by 5 in all the labels you have? You should make sure the indexes used in the DeepEdit config file are the ones representing the different lobes in the NIfTI/NRRD label files. Similar to what is done in the Segmentation model: https://github.com/Project-MONAI/MONAILabel/blob/main/sample-apps/radiology/lib/configs/segmentation.py#L37-L63 BTW, have you tried the Segmentation model? I'd recommend you check it out. It works great and you can combine it with the Total Segmentator dataset that has lung lobes segmentation: https://zenodo.org/record/6802614#.ZFTp3M7MJEY Hope this helps |
Beta Was this translation helpful? Give feedback.
All reactions
-
Thank you for reply ,
|
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 1
-
It seems like the deepedit workflow is using several transforms that has no documentation, especially for the ones that are from
monai.apps.deepedit.transforms. Are these transforms deprecated or they are still a bit too new? Thank you
Beta Was this translation helpful? Give feedback.
All reactions