-
Notifications
You must be signed in to change notification settings - Fork 9.7k
[Feature] Support ConvNeXt #7281
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
Conversation
Codecov Report
@@ Coverage Diff @@
## dev #7281 +/- ##
==========================================
+ Coverage 64.88% 64.93% +0.05%
==========================================
Files 352 355 +3
Lines 28504 28608 +104
Branches 4822 4849 +27
==========================================
+ Hits 18494 18577 +83
- Misses 9028 9042 +14
- Partials 982 989 +7
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
Need to resolve conflicts. |
Other parts look good to me. |
Hello @hhaAndroid, thanks a lot for working on this, may I know what are your plans to integrate and finalize this? Very much excited to use Convnext as backbone! |
If you just want the backbone, you can refer to the configuration and use the mmcls directly. like this: backbone=dict(
_delete_=True,
type='mmcls.ConvNeXt',
arch='tiny',
out_indices=[0, 1, 2, 3],
drop_path_rate=0.4,
layer_scale_init_value=1.0,
gap_before_final_norm=False,
init_cfg=dict(
type='Pretrained', checkpoint=checkpoint_file,
prefix='backbone.')), |
Is there any progress? |
any update? |
* update * update * fix init_cfg * update * update * update * update * update1 * final * update * update * fix lint * fix backbone config * update cascade_mask_rcnn * update and fix lint * update * fix DefaultOptimizerConstructor error * update * update * update * fix year * update * fix lint
* update * update * fix init_cfg * update * update * update * update * update1 * final * update * update * fix lint * fix backbone config * update cascade_mask_rcnn * update and fix lint * update * fix DefaultOptimizerConstructor error * update * update * update * fix year * update * fix lint
* update * update * fix init_cfg * update * update * update * update * update1 * final * update * update * fix lint * fix backbone config * update cascade_mask_rcnn * update and fix lint * update * fix DefaultOptimizerConstructor error * update * update * update * fix year * update * fix lint
* update * update * fix init_cfg * update * update * update * update * update1 * final * update * update * fix lint * fix backbone config * update cascade_mask_rcnn * update and fix lint * update * fix DefaultOptimizerConstructor error * update * update * update * fix year * update * fix lint
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
Support ConvNeXt.
Modification
Please briefly describe what modification is made in this PR.
BC-breaking (Optional)
Does the modification introduce changes that break the backward-compatibility of the downstream repos?
If so, please describe how it breaks the compatibility and how the downstream projects should modify their code to keep compatibility with this PR.
Use cases (Optional)
If this PR introduces a new feature, it is better to list some use cases here, and update the documentation.
Checklist