-
I'm using a Unet for 3D segmentation and I would like to know where it pays attention. I tried blindly to fill those with for exemple : |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
This is my normal tactic: net = UNet(
dimensions=2,
in_channels=1,
out_channels=3,
channels=(4, 8),
strides=(2,),
)
for name, _ in net.named_modules():
print(name) Which gives the output:
So perhaps |
Beta Was this translation helpful? Give feedback.
-
Yes thank you it works ! |
Beta Was this translation helpful? Give feedback.
This is my normal tactic:
Which gives the output:
So perhaps
model.2.conv
?