fpn.pytorch
fpn.pytorch copied to clipboard
Definition of ResNet
In resnet.py (line 117 self.layer4 = self._make_layer(block, 512, layers[3], stride=1)), stride is equal to 1. This results in that the size of p4 is equal to the size of p5. Is there any reason about this setting?