Upload 3 files
Browse files- openclip/list_models.py +7 -0
- openclip/list_models.txt +121 -0
openclip/list_models.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import open_clip
|
2 |
+
|
3 |
+
|
4 |
+
for m in open_clip.list_pretrained():
|
5 |
+
print(m)
|
6 |
+
|
7 |
+
# Save the output to list_models.txt, for convenience
|
openclip/list_models.txt
ADDED
@@ -0,0 +1,121 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
('RN50', 'openai')
|
2 |
+
('RN50', 'yfcc15m')
|
3 |
+
('RN50', 'cc12m')
|
4 |
+
('RN50-quickgelu', 'openai')
|
5 |
+
('RN50-quickgelu', 'yfcc15m')
|
6 |
+
('RN50-quickgelu', 'cc12m')
|
7 |
+
('RN101', 'openai')
|
8 |
+
('RN101', 'yfcc15m')
|
9 |
+
('RN101-quickgelu', 'openai')
|
10 |
+
('RN101-quickgelu', 'yfcc15m')
|
11 |
+
('RN50x4', 'openai')
|
12 |
+
('RN50x16', 'openai')
|
13 |
+
('RN50x64', 'openai')
|
14 |
+
('ViT-B-32', 'openai')
|
15 |
+
('ViT-B-32', 'laion400m_e31')
|
16 |
+
('ViT-B-32', 'laion400m_e32')
|
17 |
+
('ViT-B-32', 'laion2b_e16')
|
18 |
+
('ViT-B-32', 'laion2b_s34b_b79k')
|
19 |
+
('ViT-B-32', 'datacomp_xl_s13b_b90k')
|
20 |
+
('ViT-B-32', 'datacomp_m_s128m_b4k')
|
21 |
+
('ViT-B-32', 'commonpool_m_clip_s128m_b4k')
|
22 |
+
('ViT-B-32', 'commonpool_m_laion_s128m_b4k')
|
23 |
+
('ViT-B-32', 'commonpool_m_image_s128m_b4k')
|
24 |
+
('ViT-B-32', 'commonpool_m_text_s128m_b4k')
|
25 |
+
('ViT-B-32', 'commonpool_m_basic_s128m_b4k')
|
26 |
+
('ViT-B-32', 'commonpool_m_s128m_b4k')
|
27 |
+
('ViT-B-32', 'datacomp_s_s13m_b4k')
|
28 |
+
('ViT-B-32', 'commonpool_s_clip_s13m_b4k')
|
29 |
+
('ViT-B-32', 'commonpool_s_laion_s13m_b4k')
|
30 |
+
('ViT-B-32', 'commonpool_s_image_s13m_b4k')
|
31 |
+
('ViT-B-32', 'commonpool_s_text_s13m_b4k')
|
32 |
+
('ViT-B-32', 'commonpool_s_basic_s13m_b4k')
|
33 |
+
('ViT-B-32', 'commonpool_s_s13m_b4k')
|
34 |
+
('ViT-B-32-256', 'datacomp_s34b_b86k')
|
35 |
+
('ViT-B-32-quickgelu', 'openai')
|
36 |
+
('ViT-B-32-quickgelu', 'laion400m_e31')
|
37 |
+
('ViT-B-32-quickgelu', 'laion400m_e32')
|
38 |
+
('ViT-B-32-quickgelu', 'metaclip_400m')
|
39 |
+
('ViT-B-32-quickgelu', 'metaclip_fullcc')
|
40 |
+
('ViT-B-16', 'openai')
|
41 |
+
('ViT-B-16', 'laion400m_e31')
|
42 |
+
('ViT-B-16', 'laion400m_e32')
|
43 |
+
('ViT-B-16', 'laion2b_s34b_b88k')
|
44 |
+
('ViT-B-16', 'datacomp_xl_s13b_b90k')
|
45 |
+
('ViT-B-16', 'datacomp_l_s1b_b8k')
|
46 |
+
('ViT-B-16', 'commonpool_l_clip_s1b_b8k')
|
47 |
+
('ViT-B-16', 'commonpool_l_laion_s1b_b8k')
|
48 |
+
('ViT-B-16', 'commonpool_l_image_s1b_b8k')
|
49 |
+
('ViT-B-16', 'commonpool_l_text_s1b_b8k')
|
50 |
+
('ViT-B-16', 'commonpool_l_basic_s1b_b8k')
|
51 |
+
('ViT-B-16', 'commonpool_l_s1b_b8k')
|
52 |
+
('ViT-B-16', 'dfn2b')
|
53 |
+
('ViT-B-16-quickgelu', 'metaclip_400m')
|
54 |
+
('ViT-B-16-quickgelu', 'metaclip_fullcc')
|
55 |
+
('ViT-B-16-plus-240', 'laion400m_e31')
|
56 |
+
('ViT-B-16-plus-240', 'laion400m_e32')
|
57 |
+
('ViT-L-14', 'openai')
|
58 |
+
('ViT-L-14', 'laion400m_e31')
|
59 |
+
('ViT-L-14', 'laion400m_e32')
|
60 |
+
('ViT-L-14', 'laion2b_s32b_b82k')
|
61 |
+
('ViT-L-14', 'datacomp_xl_s13b_b90k')
|
62 |
+
('ViT-L-14', 'commonpool_xl_clip_s13b_b90k')
|
63 |
+
('ViT-L-14', 'commonpool_xl_laion_s13b_b90k')
|
64 |
+
('ViT-L-14', 'commonpool_xl_s13b_b90k')
|
65 |
+
('ViT-L-14-quickgelu', 'metaclip_400m')
|
66 |
+
('ViT-L-14-quickgelu', 'metaclip_fullcc')
|
67 |
+
('ViT-L-14-quickgelu', 'dfn2b')
|
68 |
+
('ViT-L-14-336', 'openai')
|
69 |
+
('ViT-H-14', 'laion2b_s32b_b79k')
|
70 |
+
('ViT-H-14-quickgelu', 'metaclip_fullcc')
|
71 |
+
('ViT-H-14-quickgelu', 'dfn5b')
|
72 |
+
('ViT-H-14-378-quickgelu', 'dfn5b')
|
73 |
+
('ViT-g-14', 'laion2b_s12b_b42k')
|
74 |
+
('ViT-g-14', 'laion2b_s34b_b88k')
|
75 |
+
('ViT-bigG-14', 'laion2b_s39b_b160k')
|
76 |
+
('roberta-ViT-B-32', 'laion2b_s12b_b32k')
|
77 |
+
('xlm-roberta-base-ViT-B-32', 'laion5b_s13b_b90k')
|
78 |
+
('xlm-roberta-large-ViT-H-14', 'frozen_laion5b_s13b_b90k')
|
79 |
+
('convnext_base', 'laion400m_s13b_b51k')
|
80 |
+
('convnext_base_w', 'laion2b_s13b_b82k')
|
81 |
+
('convnext_base_w', 'laion2b_s13b_b82k_augreg')
|
82 |
+
('convnext_base_w', 'laion_aesthetic_s13b_b82k')
|
83 |
+
('convnext_base_w_320', 'laion_aesthetic_s13b_b82k')
|
84 |
+
('convnext_base_w_320', 'laion_aesthetic_s13b_b82k_augreg')
|
85 |
+
('convnext_large_d', 'laion2b_s26b_b102k_augreg')
|
86 |
+
('convnext_large_d_320', 'laion2b_s29b_b131k_ft')
|
87 |
+
('convnext_large_d_320', 'laion2b_s29b_b131k_ft_soup')
|
88 |
+
('convnext_xxlarge', 'laion2b_s34b_b82k_augreg')
|
89 |
+
('convnext_xxlarge', 'laion2b_s34b_b82k_augreg_rewind')
|
90 |
+
('convnext_xxlarge', 'laion2b_s34b_b82k_augreg_soup')
|
91 |
+
('coca_ViT-B-32', 'laion2b_s13b_b90k')
|
92 |
+
('coca_ViT-B-32', 'mscoco_finetuned_laion2b_s13b_b90k')
|
93 |
+
('coca_ViT-L-14', 'laion2b_s13b_b90k')
|
94 |
+
('coca_ViT-L-14', 'mscoco_finetuned_laion2b_s13b_b90k')
|
95 |
+
('EVA01-g-14', 'laion400m_s11b_b41k')
|
96 |
+
('EVA01-g-14-plus', 'merged2b_s11b_b114k')
|
97 |
+
('EVA02-B-16', 'merged2b_s8b_b131k')
|
98 |
+
('EVA02-L-14', 'merged2b_s4b_b131k')
|
99 |
+
('EVA02-L-14-336', 'merged2b_s6b_b61k')
|
100 |
+
('EVA02-E-14', 'laion2b_s4b_b115k')
|
101 |
+
('EVA02-E-14-plus', 'laion2b_s9b_b144k')
|
102 |
+
('ViT-B-16-SigLIP', 'webli')
|
103 |
+
('ViT-B-16-SigLIP-256', 'webli')
|
104 |
+
('ViT-B-16-SigLIP-i18n-256', 'webli')
|
105 |
+
('ViT-B-16-SigLIP-384', 'webli')
|
106 |
+
('ViT-B-16-SigLIP-512', 'webli')
|
107 |
+
('ViT-L-16-SigLIP-256', 'webli')
|
108 |
+
('ViT-L-16-SigLIP-384', 'webli')
|
109 |
+
('ViT-SO400M-14-SigLIP', 'webli')
|
110 |
+
('ViT-SO400M-14-SigLIP-384', 'webli')
|
111 |
+
('ViT-L-14-CLIPA', 'datacomp1b')
|
112 |
+
('ViT-L-14-CLIPA-336', 'datacomp1b')
|
113 |
+
('ViT-H-14-CLIPA', 'datacomp1b')
|
114 |
+
('ViT-H-14-CLIPA-336', 'laion2b')
|
115 |
+
('ViT-H-14-CLIPA-336', 'datacomp1b')
|
116 |
+
('ViT-bigG-14-CLIPA', 'datacomp1b')
|
117 |
+
('ViT-bigG-14-CLIPA-336', 'datacomp1b')
|
118 |
+
('nllb-clip-base', 'v1')
|
119 |
+
('nllb-clip-large', 'v1')
|
120 |
+
('nllb-clip-base-siglip', 'v1')
|
121 |
+
('nllb-clip-large-siglip', 'v1')
|