You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been running the nn u-netmodel for images with corresponding segmentation masks which have 19 classes.
Individually classifying them lead to the results whats has been reported in the literature. As these 19 classes can be grouped to three different groups I've tried region based training. All Classes don't overlap
I've constructed my json file as follows:
S and V result in a fairly good score, however for the 3rd group: "D" the Dice Score is zero.
For the first model where I trained on the individual classses I've used the weighted average to calculate the group average Dice Score.
Throughout the Training process for region bases training I get PseudoDice scores about 0.9 and in the the validation will drop to 0.5
I've constructed my json file as follows:
Did I do a mistake in my json file
or could the reason be that a for "D" not all classes are present but this argument would be not be very strong as also some classes are missing in "V" for some images just not as much for "V" as for "D"
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hey,
I've been running the nn u-netmodel for images with corresponding segmentation masks which have 19 classes.
Individually classifying them lead to the results whats has been reported in the literature. As these 19 classes can be grouped to three different groups I've tried region based training. All Classes don't overlap
I've constructed my json file as follows:
S and V result in a fairly good score, however for the 3rd group: "D" the Dice Score is zero.
For the first model where I trained on the individual classses I've used the weighted average to calculate the group average Dice Score.
Throughout the Training process for region bases training I get PseudoDice scores about 0.9 and in the the validation will drop to 0.5
I've constructed my json file as follows:
Did I do a mistake in my json file
or could the reason be that a for "D" not all classes are present but this argument would be not be very strong as also some classes are missing in "V" for some images just not as much for "V" as for "D"
{
"name": "Dataset004,
"channel_names": {
"both": "0"
},
"labels": {
"background": 0,
"S": 1,
"V": [2,3,4,5,6,7,8,9,10],
"D": [11,12,13,14,15,16,17,18,19]
},
"regions_class_order":[1,2,3],
"numTraining": 406,
"file_ending": ".nii.gz",
"overwrite_image_reader_writer": "NibabelIO"
}
Beta Was this translation helpful? Give feedback.
All reactions