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
When I try to reimplement the DenseASPP, I refer to both the official code and this repo, but when it comes to DenseASPP head, I notice the order of conv and norm in DenseASPP block is different.
In official code, it's norm->relu->conv->norm->relu->conv, in this repo, it's conv->norm->relu->conv->norm->relu.
Just the preact form of conv and postact form of convolution, is that mean the postact form performs better in semantic segmentation after your experiment?
The text was updated successfully, but these errors were encountered:
When I try to reimplement the DenseASPP, I refer to both the official code and this repo, but when it comes to DenseASPP head, I notice the order of conv and norm in DenseASPP block is different.
In official code, it's norm->relu->conv->norm->relu->conv, in this repo, it's conv->norm->relu->conv->norm->relu.
Just the preact form of conv and postact form of convolution, is that mean the postact form performs better in semantic segmentation after your experiment?
The text was updated successfully, but these errors were encountered: