-
For example, if I want to downsample the feature map 3 times in ResNet50 instead of 4 which means a 14x14 feature map can be acquired through a 224 input image instead of the traditional 7x7 feature map. This will be very helpfull for those people who focus on segmentation development. |
Beta Was this translation helpful? Give feedback.
Answered by
rwightman
Sep 13, 2021
Replies: 1 comment 2 replies
-
@KleinXin several of the models support that, including the resnet.py based ones...add arg |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
KleinXin
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@KleinXin several of the models support that, including the resnet.py based ones...add arg
output_stride=16
for 1/16 * input == 14x14 , and you can useoutput_stride=8
for 1/8 * input res