-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
[Feature] add DPT head #605
Conversation
Codecov Report
@@ Coverage Diff @@
## master #605 +/- ##
==========================================
+ Coverage 88.76% 88.90% +0.13%
==========================================
Files 109 110 +1
Lines 5823 5928 +105
Branches 935 950 +15
==========================================
+ Hits 5169 5270 +101
- Misses 463 465 +2
- Partials 191 193 +2
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
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.
Add this method to Supported methods (Chinese and English) https://github.com/open-mmlab/mmsegmentation#benchmark-and-model-zoo.
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.
Please fix the conflict.
LGTM except for one comment. Please resolve the conflict btw. |
Check checkpoints' keys, maybe you should update keys. |
* add DPT head * [fix] fix init error * use mmcv function * delete code * remove transpose clas * support NLC output shape * Delete post_process_layer.py * add unittest and docstring * rename variables * fix project error and add unittest * match dpt weights * add configs * fix vit pos_embed bug and dpt feature fusion bug * match vit output * fix gelu * minor change * update unitest * fix configs error * inference test * remove auxilary * use local pretrain * update training results * update yml * update fps and memory test * update doc * update readme * add yml * update doc * remove with_cp * update config * update docstring * remove dpt-l * add init_cfg and modify readme.md * Update dpt_vit-b16.py * zh-n README * use constructor instead of build function * prevent tensor being modified by ConvModule * fix unittest Co-authored-by: Junjun2016 <hejunjun@sjtu.edu.cn>
* Add configs and some stats. * Update. * Update r101 8x8. * Minor. * Update url. * Update changelog. * Fix typos and workdir.
Implementation of Vision Transformers for Dense Prediction.
Modified from the official repository.
Training results:
Different from the original paper, I train with
AdamW
optimizer instead ofSGD
.