I want to use resnet as backbone of YOLOv3. But I have found that there is a shortcut between layer 5 and layer1, layer17 and layer13, and so on. The size of layer 5 is 104x104x256, while the size of layer 1 is 104x104x64, and the size of layer 17 is 52x52x512, the size of layer 13 is 104x104x256. After the layer 17, it print a stderr.
refer to https://github.com/pytorch/vision/blob/master/torchvision/models/resnet.py, I doubt there might be something wrong with the resnet50.cfg, layer1 cannot have a shortcut with layer5.
Hello!
I want to use resnet as backbone of YOLOv3. But I have found that there is a shortcut between layer 5 and layer1, layer17 and layer13, and so on. The size of layer 5 is 104x104x256, while the size of layer 1 is 104x104x64, and the size of layer 17 is 52x52x512, the size of layer 13 is 104x104x256. After the layer 17, it print a stderr. refer to https://github.com/pytorch/vision/blob/master/torchvision/models/resnet.py, I doubt there might be something wrong with the resnet50.cfg, layer1 cannot have a shortcut with layer5.