The convergence speed of 3D CNN training is too slow #4328
-
Thanks for your gerat job,I foud that when I not use |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 7 replies
-
Hi @lanslotttTT , I think there are possible reasons that affect a training process, maybe you can share your training program and some loss / metrics curves for further analysis? Thanks. |
Beta Was this translation helpful? Give feedback.
-
If the task is tumor segmentation, be careful with Spacingd transform. You do not want to have a very coarse re-sampling, otherwise the foreground regions would be gone in the re-sampled ground truth masks, which makes training much harder. |
Beta Was this translation helpful? Give feedback.
-
Our experience with segmenting small objects is that the task is just hard and takes time to get a good result when training on patches. If you're not cropping by foreground of course you'll get more patches that don't have tumour in them, and so the network has less chance to learn what to look for since it's fed so many negative cases with no label. My experience is that training a segmentation network with images having no labels (background) makes for poor results, but then you have the problem of what to do in the background areas, so perhaps a strategy of starting out with cropping to the foreground initially then introducing more background images over time will get to better results. It's hard to say anything more specific without seeing your data though our colleagues have worked on small object segmentation and how to evaluate the results in "Lesion-wise evaluation for effective performance monitoring of small object segmentation" which might be helpful to you. |
Beta Was this translation helpful? Give feedback.
-
Most of them are false positives. I expect dice score to be 0.8 above,but now I just get 0.1 dice score
…---- Replied Message ----
| From | ***@***.***> |
| Date | 05/25/2022 00:02 |
| To | ***@***.***> |
| Cc | ***@***.******@***.***> |
| Subject | Re: [Project-MONAI/MONAI] The convergence speed of 3D CNN training is too slow (Discussion #4328) |
What are the issues in the predictions, false positives or false negatives? How large is gap between the prediction and your expected performance?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you were mentioned.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Thank you for your advice. Our next plan is to increase the number of training epoches to test whether the network can converge or not.
…---- Replied Message ----
| From | ***@***.***> |
| Date | 05/25/2022 00:05 |
| To | ***@***.***> |
| Cc | ***@***.******@***.***> |
| Subject | Re: [Project-MONAI/MONAI] The convergence speed of 3D CNN training is too slow (Discussion #4328) |
If the task is tumor segmentation, be careful with Spacingd transform. You do not want to have a very coarse re-sampling, otherwise the foreground regions would be gone in the re-sampled ground truth masks, which makes training much harder.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you were mentioned.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
Our experience with segmenting small objects is that the task is just hard and takes time to get a good result when training on patches. If you're not cropping by foreground of course you'll get more patches that don't have tumour in them, and so the network has less chance to learn what to look for since it's fed so many negative cases with no label. My experience is that training a segmentation network with images having no labels (background) makes for poor results, but then you have the problem of what to do in the background areas, so perhaps a strategy of starting out with cropping to the foreground initially then introducing more background images over time will get to better resul…