-
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 PoolFormer (CVPR'2022) #1537
Conversation
Codecov ReportBase: 89.11% // Head: 89.14% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## master #1537 +/- ##
==========================================
+ Coverage 89.11% 89.14% +0.03%
==========================================
Files 145 145
Lines 8716 8716
Branches 1471 1471
==========================================
+ Hits 7767 7770 +3
+ Misses 707 704 -3
Partials 242 242
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. |
4c25e44
to
bbdac5c
Compare
Needed to convert `timesteps` to `float32` a bit sooner. Fixes open-mmlab#1537
* [Feature] Add PoolFormer (CVPR'2022) * Upload README.md, models and log.json * fix wrong base config name in config file * refactor alignresize * delete align_resize.py * change config name * use ResizetoMultiple to replace AlignResize * update readme * fix config bug * resolve conflict
Motivation
Support PoolFormer (CVPR'2022)
Paper: MetaFormer is Actually What You Need for Vision
Code: https://github.com/sail-sg/poolformer/tree/main/segmentation
Upstream backbone from MMClassification: https://github.com/open-mmlab/mmclassification/tree/master/configs/poolformer
Results about Aligning Inference metric
Thus, the inference metric has been aligned, which means the model structure and test pipeline are both totally correct.
Results about Aligning Training metric
Thus, PoolFormer could be re-implemented in this PR.
Total Results
Note:
mIoU
with * is collected whenResizeToMultiple
is adopted intest_pipeline
, so domIoU
in logs.