-
Hello all, I am also working toward for extracting network from nnUNet. I need more flexibility for testing modified versions. What I found speicial in nnUNet is "Deep supervision" in training. I tracked it and I end up here with Dynunet. I wonder how Dynunet deal with low-resolution target labels. nnUNet prepares target labels with quite long preprocessing. As nnUNet did it in loss calculation, I believe Dynunet should have low-resolution target labels, but I cannot find it clearly. Could you guide me to the parts of code? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I think, in the code, it keep the same target label and compare it with each prediction (different resolutions), but I am not sure that this corresponds with how nnUNet deal with it. |
Beta Was this translation helpful? Give feedback.
tutorials/modules/dynunet_pipeline/trainer.py
Line 56 in 8abcbc6
I think, in the code, it keep the same target label and compare it with each prediction (different resolutions), but I am not sure that this corresponds with how nnUNet deal with it.