-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
CodeCamp #62 #1238
CodeCamp #62 #1238
Conversation
mmcls/models/backbones/levit.py
Outdated
activation=attention_activation, | ||
resolution=resolution, | ||
), drop_path)) | ||
if mr > 0: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This condition is useless if mlp_ratio
won't equal zero.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, I don't understand what you mean. Only when the mlp_ ratio is greater than 0 MLP is meaningful
Codecov ReportBase: 0.02% // Head: 86.58% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## dev-1.x #1238 +/- ##
============================================
+ Coverage 0.02% 86.58% +86.56%
============================================
Files 121 165 +44
Lines 8217 13382 +5165
Branches 1368 2125 +757
============================================
+ Hits 2 11587 +11585
+ Misses 8215 1448 -6767
- Partials 0 347 +347
Flags with carried forward coverage won't be shown. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
Thanks for your contribution and we appreciate it a lot. The following instructions would make your pull request more healthy and more easily get feedback. If you do not understand some items, don't worry, just make the pull request and seek help from maintainers.
Motivation
添加LeViT的BackBone和权重转换
论文:https://arxiv.org/pdf/2104.01136.pdf
Modification
添加模型文件与配置文件
Please briefly describe what modification is made in this PR