Create open_clip_config.json (#2)
Browse files- Create open_clip_config.json (79c75d1642138de2c2138ff7a989721d75cce509)
Co-authored-by: Ross Wightman <[email protected]>
- open_clip_config.json +32 -0
open_clip_config.json
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"model_cfg": {
|
3 |
+
"embed_dim": 1280,
|
4 |
+
"vision_cfg": {
|
5 |
+
"image_size": 224,
|
6 |
+
"layers": 48,
|
7 |
+
"width": 1664,
|
8 |
+
"head_width": 104,
|
9 |
+
"mlp_ratio": 4.9231,
|
10 |
+
"patch_size": 14
|
11 |
+
},
|
12 |
+
"text_cfg": {
|
13 |
+
"context_length": 77,
|
14 |
+
"vocab_size": 49408,
|
15 |
+
"width": 1280,
|
16 |
+
"heads": 20,
|
17 |
+
"layers": 32
|
18 |
+
}
|
19 |
+
},
|
20 |
+
"preprocess_cfg": {
|
21 |
+
"mean": [
|
22 |
+
0.48145466,
|
23 |
+
0.4578275,
|
24 |
+
0.40821073
|
25 |
+
],
|
26 |
+
"std": [
|
27 |
+
0.26862954,
|
28 |
+
0.26130258,
|
29 |
+
0.27577711
|
30 |
+
]
|
31 |
+
}
|
32 |
+
}
|