Skip to content
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

add *Swin MLP*: a hierarchical fully MLP architecture using shifted windows. #90

Closed
wants to merge 10 commits into from
Closed
Prev Previous commit
Next Next commit
update
  • Loading branch information
zeliu98 committed Jul 3, 2021
commit bdb3f11b6e8544f2621b819206fcf8c0e0398243
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
DATA:
IMG_SIZE: 256
MODEL:
TYPE: swin
NAME: swin_tiny_hd12_patch4_window8_256
TYPE: swin_mlp
NAME: swin_mlp_tiny_hd12_patch4_window8_256
DROP_PATH_RATE: 0.2
SWIN:
SWIN_MLP:
EMBED_DIM: 96
DEPTHS: [ 2, 2, 6, 2 ]
NUM_HEADS: [ 8, 16, 32, 64 ]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
DATA:
IMG_SIZE: 256
MODEL:
TYPE: swin
NAME: swin_tiny_hd6_patch4_window8_256
TYPE: swin_mlp
NAME: swin_mlp_tiny_hd6_patch4_window8_256
DROP_PATH_RATE: 0.2
SWIN:
SWIN_MLP:
EMBED_DIM: 96
DEPTHS: [ 2, 2, 6, 2 ]
NUM_HEADS: [ 16, 32, 64, 128 ]
Expand Down