forked from keras-team/keras-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetaclip_2_presets.py
More file actions
56 lines (55 loc) · 2.28 KB
/
metaclip_2_presets.py
File metadata and controls
56 lines (55 loc) · 2.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
"""MetaCLIP 2 model preset configurations."""
backbone_presets = {
"metaclip_2_vit_huge_patch14_224": {
"metadata": {
"description": (
"2 billion parameter, 32-layer for vision and 24-layer for "
"text, patch size of 14, image resolution 224x224. MetaCLIP 2 "
"worldwide huge model (ViT-H-14-quickgelu-worldwide) trained on " # noqa
"29B seen pairs with QuickGELU activation."
),
"params": 1858783745,
"path": "metaclip_2",
},
"kaggle_handle": "kaggle://keras/metaclip2/keras/metaclip_2_vit_huge_patch14_224/1",
},
"metaclip_2_vit_huge_patch14_378": {
"metadata": {
"description": (
"2 billion parameter, 32-layer for vision and 24-layer for "
"text, patch size of 14, image resolution 378x378. MetaCLIP 2 "
"worldwide huge model (ViT-H-14-378-worldwide) trained on "
"29B seen pairs."
),
"params": 1859389185,
"path": "metaclip_2",
},
"kaggle_handle": "kaggle://keras/metaclip2/keras/metaclip_2_vit_huge_patch14_378/1",
},
"metaclip_2_vit_giant_patch14_224": {
"metadata": {
"description": (
"4 billion parameter, 40-layer for vision and 24-layer for "
"text, patch size of 14, image resolution 224x224. MetaCLIP 2 "
"worldwide giant model (ViT-bigG-14-worldwide) trained on "
"29B seen pairs."
),
"params": 3630409985,
"path": "metaclip_2",
},
"kaggle_handle": "kaggle://keras/metaclip2/keras/metaclip_2_vit_giant_patch14_224/1",
},
"metaclip_2_vit_giant_patch14_378": {
"metadata": {
"description": (
"4 billion parameter, 40-layer for vision and 24-layer for "
"text, patch size of 14, image resolution 378x378. MetaCLIP 2 "
"worldwide giant model (ViT-bigG-14-378-worldwide) trained on "
"29B seen pairs."
),
"params": 3631197057,
"path": "metaclip_2",
},
"kaggle_handle": "kaggle://keras/metaclip2/keras/metaclip_2_vit_giant_patch14_378/1",
},
}