We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@volgachen can you provide model structure with input=112*112,? thanks!
The text was updated successfully, but these errors were encountered:
There are several ways to modify the original model structure. For example,
patch_size
4
2
model = PyramidVisionTransformer( patch_size=2, embed_dims=[64, 128, 320, 512], num_heads=[1, 2, 5, 8], mlp_ratios=[8, 8, 4, 4], qkv_bias=True, norm_layer=partial(nn.LayerNorm, eps=1e-6), depths=[3, 4, 6, 3], sr_ratios=[8, 4, 2, 1], **kwargs)
img_size=112
However, I cannot tell which could be the best without experiments. You can try it. I am glad to see your results.
Sorry, something went wrong.
thanks!
1.PyramidVisionTransformer, failed; 2.Remove a certain stage, complicated, failed; 3.Setting img_size=112, failed.
No branches or pull requests
@volgachen
can you provide model structure with input=112*112,?
thanks!
The text was updated successfully, but these errors were encountered: