Implementation details in ResNet50 backbone
naoto0804 opened this issue · 2 comments
naoto0804 commented
Thanks for sharing your paper and the code.
In your TIP paper, you changed the backbone network to ResNet50. To my understanding, we get 5 feature maps downsampled by a factor of 1, 2, 4, 8, 16 from the backbone ResNet50, and then fuse them progressively with your proposed modules. However, a first convolutional layer in ResNet50 has stride=2
, thus producing a feature map downsampled by a factor of 2. How did you get the feature map that is not downsampled at all?
Wangyupei commented
Maybe you can set stride=1 in the first convolutional layer.
naoto0804 commented
I appreciate it.