You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to double-check evaluations on different resolutions.
As you mentioned, I just need to replace img_size=256 from vit_rope.rope_mixed_deit_small_patch16_LS(pretrained=True, img_size=256) to others like img_size=192 or img_size=512 so that ViT can receive images of 192 or 512.
And then --input-size 224 is changed to --input-size 192 or --input-size 512 on evaluation command lines so that the test dataset is interpolated to img_size=192 or img_size=512 without other efforts . Are these correct?
What does LS mean in deit_small_patch16_LS?
The text was updated successfully, but these errors were encountered:
Yes. You are correct.
ViT model loaded with image_size=512 can receive images of 512x512.
I also did a similar thing to deit evaluation code. So, you can do test with other interpolated resolution with --input-size 512 args.
Hi,
Thanks for an interesting idea.
I want to double-check evaluations on different resolutions.
As you mentioned, I just need to replace
img_size=256
fromvit_rope.rope_mixed_deit_small_patch16_LS(pretrained=True, img_size=256)
to others likeimg_size=192
orimg_size=512
so that ViT can receive images of192
or512
.And then
--input-size 224
is changed to--input-size 192
or--input-size 512
on evaluation command lines so that the test dataset is interpolated toimg_size=192
orimg_size=512
without other efforts . Are these correct?What does
LS
mean indeit_small_patch16_LS
?The text was updated successfully, but these errors were encountered: