Skip to content

Commit cf0e371

Browse files
author
talrid
committed
84_0
1 parent 0968bde commit cf0e371

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

timm/models/vision_transformer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def _cfg(url='', **kwargs):
126126
),
127127
'vit_base_patch16_224_1k_miil': _cfg(
128128
url='https://miil-public-eu.oss-eu-central-1.aliyuncs.com/model-zoo/ImageNet_21K_P/models/timm'
129-
'/vit_base_patch16_224_1k_miil_84_4.pth',
129+
'/vit_base_patch16_224_1k_miil_84_0.pth',
130130
mean=(0, 0, 0), std=(1, 1, 1), crop_pct=0.875, interpolation='bilinear',
131131
),
132132
}
@@ -714,5 +714,5 @@ def vit_base_patch16_224_1k_miil(pretrained=False, **kwargs):
714714
Weights taken from: https://github.com/Alibaba-MIIL/ImageNet21K
715715
"""
716716
model_kwargs = dict(patch_size=16, embed_dim=768, depth=12, num_heads=12, qkv_bias=False, **kwargs)
717-
model = _create_vision_transformer('vit_base_patch16_224_1k_miil_84_4', pretrained=pretrained, **model_kwargs)
717+
model = _create_vision_transformer('vit_base_patch16_224_1k_miil', pretrained=pretrained, **model_kwargs)
718718
return model

0 commit comments

Comments
 (0)