Skip to content

Commit 7d235c5

Browse files
authored
Merge pull request #1230 from donglixp/patch-1
migrate azure blob for beit checkpoints
2 parents 52ac881 + 09e9f3d commit 7d235c5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

timm/models/beit.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,27 +46,27 @@ def _cfg(url='', **kwargs):
4646

4747
default_cfgs = {
4848
'beit_base_patch16_224': _cfg(
49-
url='https://unilm.blob.core.windows.net/beit/beit_base_patch16_224_pt22k_ft22kto1k.pth'),
49+
url='https://conversationhub.blob.core.windows.net/beit-share-public/beit/beit_base_patch16_224_pt22k_ft22kto1k.pth'),
5050
'beit_base_patch16_384': _cfg(
51-
url='https://unilm.blob.core.windows.net/beit/beit_base_patch16_384_pt22k_ft22kto1k.pth',
51+
url='https://conversationhub.blob.core.windows.net/beit-share-public/beit/beit_base_patch16_384_pt22k_ft22kto1k.pth',
5252
input_size=(3, 384, 384), crop_pct=1.0,
5353
),
5454
'beit_base_patch16_224_in22k': _cfg(
55-
url='https://unilm.blob.core.windows.net/beit/beit_base_patch16_224_pt22k_ft22k.pth',
55+
url='https://conversationhub.blob.core.windows.net/beit-share-public/beit/beit_base_patch16_224_pt22k_ft22k.pth',
5656
num_classes=21841,
5757
),
5858
'beit_large_patch16_224': _cfg(
59-
url='https://unilm.blob.core.windows.net/beit/beit_large_patch16_224_pt22k_ft22kto1k.pth'),
59+
url='https://conversationhub.blob.core.windows.net/beit-share-public/beit/beit_large_patch16_224_pt22k_ft22kto1k.pth'),
6060
'beit_large_patch16_384': _cfg(
61-
url='https://unilm.blob.core.windows.net/beit/beit_large_patch16_384_pt22k_ft22kto1k.pth',
61+
url='https://conversationhub.blob.core.windows.net/beit-share-public/beit/beit_large_patch16_384_pt22k_ft22kto1k.pth',
6262
input_size=(3, 384, 384), crop_pct=1.0,
6363
),
6464
'beit_large_patch16_512': _cfg(
65-
url='https://unilm.blob.core.windows.net/beit/beit_large_patch16_512_pt22k_ft22kto1k.pth',
65+
url='https://conversationhub.blob.core.windows.net/beit-share-public/beit/beit_large_patch16_512_pt22k_ft22kto1k.pth',
6666
input_size=(3, 512, 512), crop_pct=1.0,
6767
),
6868
'beit_large_patch16_224_in22k': _cfg(
69-
url='https://unilm.blob.core.windows.net/beit/beit_large_patch16_224_pt22k_ft22k.pth',
69+
url='https://conversationhub.blob.core.windows.net/beit-share-public/beit/beit_large_patch16_224_pt22k_ft22k.pth',
7070
num_classes=21841,
7171
),
7272
}

0 commit comments

Comments
 (0)