I'm creating a ViT model with following code:
model = timm.create_model('vit_base_patch16_224', pretrained=False, img_size=64,
checkpoint_path=local_checkpoint_path,
global_pool='avg')
Where I use a img_size 64.
I expect resample_abs_pos_embed will also applies to this use case like loading pretrained model from timm.