You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As shown in the ResUNet architecture in the paper:
However, your implement of ResUNet2 feed output of residual block to 3D ConvTr, and activate feature map twice using ReLU(one in self.block, one in MEF.relu). Is there a problem here, or am I missing something?
Yes, your first model was the one that I tried first and experimentally, I found that the current model works better.
The diagram might not match the implementation as we tried various models in the camera ready and used the one variation that worked best. Sorry for the confusion.
Hi chrischoy, @chrischoy
Nice work and thank you for sharing the code.
I have a question about the implementation of ResUNet2. In my opinion, the forward() function of ResUNet2 should look like:
As shown in the ResUNet architecture in the paper:
However, your implement of ResUNet2 feed output of residual block to 3D ConvTr, and activate feature map twice using ReLU(one in self.block, one in MEF.relu). Is there a problem here, or am I missing something?
FCGF/model/resunet.py
Lines 142 to 147 in 458549e
The text was updated successfully, but these errors were encountered: