-
Notifications
You must be signed in to change notification settings - Fork 7.1k
add swin_s and swin_b variants and improved swin_t #6048
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
Merged
Merged
Changes from 4 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
befdb69
add swin_s and swin_b variants
jdsgomes 63e2c22
fix swin_b params
jdsgomes d598e2e
fix n parameters and acc numbers
jdsgomes bfbc4f9
adding missing acc numbers
jdsgomes faf3faf
Merge branch 'main' into swin_b_and_s
jdsgomes d3c19ae
apply ufmt
jdsgomes 79c3f57
Merge branch 'main' into swin_b_and_s
jdsgomes 47a6b61
Updating `_docs` to reflect training recipe
datumbox 0ff4511
Merge branch 'main' into swin_b_and_s
jdsgomes 8c65388
Fix exted for swin_b
jdsgomes File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,6 +101,8 @@ You can construct a model with random weights by calling its constructor: | |
convnext_base = models.convnext_base() | ||
convnext_large = models.convnext_large() | ||
swin_t = models.swin_t() | ||
swin_s = models.swin_s() | ||
swin_b = models.swin_b() | ||
|
||
We provide pre-trained models, using the PyTorch :mod:`torch.utils.model_zoo`. | ||
|
||
|
@@ -226,7 +228,9 @@ convnext_tiny 82.520 96.146 | |
convnext_small 83.616 96.650 | ||
convnext_base 84.062 96.870 | ||
convnext_large 84.414 96.976 | ||
swin_t 81.358 95.526 | ||
swin_t 81.474 95.776 | ||
swin_s 83.196 96.360 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. original repo acc Acc@1 83.2 Acc@5 96.2 |
||
swin_b 83.582 96.640 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. original repo Acc@1 83.5 Acc@5 96.5 |
||
================================ ============= ============= | ||
|
||
|
||
|
@@ -468,6 +472,8 @@ SwinTransformer | |
:template: function.rst | ||
|
||
swin_t | ||
swin_s | ||
swin_b | ||
|
||
Quantized Models | ||
---------------- | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,3 +23,5 @@ more details about this class. | |
:template: function.rst | ||
|
||
swin_t | ||
swin_s | ||
swin_b |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
original repo Acc@1 81.2 Acc@5 95.5