-
Notifications
You must be signed in to change notification settings - Fork 217
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A solution: HRNet Backbone Adopt_different_blocks_bug(BASIC//BOTTLENECK) #28
Comments
`# ############################# Modified by Mingyang ############################################################## ##################### Adopt_different_blocks_bug(BASIC//BOTTLENECK)
############################# Adopt_different_blocks_bug(BASIC//BOTTLENECK) #############################################` |
Taylor-X76
changed the title
HRNet Backbone Adopt_different_blocks_bug(BASIC//BOTTLENECK)
A solution: HRNet Backbone Adopt_different_blocks_bug(BASIC//BOTTLENECK)
Sep 1, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/HRNet/HRNet-Image-Classification/blob/8f158719e821836e21e6cba99a3241a12a13bc41/lib/models/cls_hrnet.py#L459~L473
If different block types are used in different stages, instead of the default bottleneck-basic-basic-basic in the original yaml file, the channel mismatch error as shown in the figure below will appear. To avoid this error, we change it in the transition layer and use conv3*3 between different stages to match the number of channels. The corrected code and results are shown in the figure below.
(The demonstration is only a proof of feasibility, not an actual demonstration of the code)
The text was updated successfully, but these errors were encountered: