3D model channels #574
-
Hi I've used nnU-Net to train a 3D model and it's working perfect! Thanks for the great work! Now I'm curious about one thing. As my network was initially not printed as pdf, I got the following output about the structure. 2021-03-02 14:31:40.769157: Generic_UNet( In the article about nnU-Net it states that the number of feature maps are capped at 320 for 3D networks, so how am I supposed to understand this Conv3D layer which seems to have 640 input channels? Best |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, |
Beta Was this translation helpful? Give feedback.
Hi,
the 640 denotes the number of input features.
If you concatenate 320 from below and 320 from skip you get 640.
None of the convolutions have more then 320 output features ;-)
Best,
Fabian