Missing encode step in swin unetr model source code? #6664
Replies: 3 comments
-
Hi @tangy5, could you please share some comments on this one? |
Beta Was this translation helpful? Give feedback.
-
Yes, we realized the same, it is very weird, the produced network is not same as the paper... |
Beta Was this translation helpful? Give feedback.
-
Hi @EmreTaha , thanks for your interest of the work. Yes, this is intentionally implemented to keep 4 times of downsample and upsample. This is an architecture design option, if you connect 3rd stage to a UnetResblock, it will also be good but will result in a higher number of parameters with 5 times downsample and upsample. I don't think it will impact performance too much. Thanks. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
I went through the Swin UNETR model source code and found in the forward pass of the
SwinUNETR
class the hidden states from 3rd stage did not pass through aUnetrBasicBlock
like the other hidden states (see line 307 for swin_unetr.py). Am I missing something, is this how it's supposed to be implemented? Thanks!Beta Was this translation helpful? Give feedback.
All reactions