Replies: 2 comments 3 replies
-
It's weird that after hundreds of epochs, the output basically look very similar to the input. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi @qwang0225, I noticed that you used Hope it helps, thanks! |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I am a physician new to medical imaging research. I've been working on training a semantic segmentation model to detect bleeding in CT head scans. My dataset comprises about 70 CT images and corresponding mask files. The images are 3D pixel arrays sized at 512x512xHeight, where 'Height' varies from 30 to 50 slices per scan. The masks mirror this shape but only contain binary values (0 or 1), with '1' indicating bleeding pixels.
The challenge is the significant imbalance in the pixel values in the masks, where over 99% are '0', and some samples completely lack positive ('1') pixels. This seems typical for minor bleeding in CT head imaging. To address this imbalance, I've applied data augmentation and focal loss techniques, adjusting weights. Nothing worked.
The model continued to underperform, with the mean Dice coefficient lingering around 0.1 even after training for hundreds of epochs.
I hope some of you with more experience could help out. Thanks.
Here is the code, sorry it's kind of long.
Beta Was this translation helpful? Give feedback.
All reactions