One model or Multiples Models for segmentation? #1774
Unanswered
AgustinSaturni
asked this question in
Q&A
Replies: 1 comment 2 replies
-
Hi @AgustinSaturni, you can start by trying a single model approach. It's simpler and can often be surprisingly effective. You can then evaluate its performance on each bone, if the performance is acceptable for all bones, this is the most efficient solution. If you notice that certain bones are poorly segmented, you could consider training additional models specifically for those bones or applying techniques like multi-task learning. Thanks. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everybody, Im developing a Model using Unet:
model = UNet(
spatial_dims=3,
in_channels=1,
out_channels=8,
channels=(16, 32, 64, 128, 256),
strides=(2, 2, 2, 2),
num_res_units=2,
norm=Norm.BATCH,
).to(device)
In this case I have 7 bones to segment and I would like to know what do you think is best for this situation. I dont know if its convinient to train one model to segment every bone OR train multiples models wich each model can detect each bone.
Wich option is better??
Thank you!!
Beta Was this translation helpful? Give feedback.
All reactions