visheratin
commited on
Update open_clip_config.json
Browse files- open_clip_config.json +32 -15
open_clip_config.json
CHANGED
@@ -1,17 +1,34 @@
|
|
1 |
{
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
}
|
|
|
1 |
{
|
2 |
+
"model_cfg": {
|
3 |
+
"embed_dim": 768,
|
4 |
+
"custom_text": true,
|
5 |
+
"init_logit_bias": -10,
|
6 |
+
"vision_cfg": {
|
7 |
+
"image_size": 256,
|
8 |
+
"timm_model_name": "vit_base_patch16_siglip_256",
|
9 |
+
"timm_model_pretrained": false,
|
10 |
+
"timm_pool": "map",
|
11 |
+
"timm_proj": "none"
|
12 |
+
},
|
13 |
+
"text_cfg": {
|
14 |
+
"hf_model_name": "facebook/nllb-200-distilled-600M",
|
15 |
+
"hf_tokenizer_name": "facebook/nllb-200-distilled-600M",
|
16 |
+
"hf_proj_type": "linear",
|
17 |
+
"hf_pooler_type": "cls_pooler"
|
18 |
+
}
|
19 |
+
},
|
20 |
+
"preprocess_cfg": {
|
21 |
+
"mean": [
|
22 |
+
0.5,
|
23 |
+
0.5,
|
24 |
+
0.5
|
25 |
+
],
|
26 |
+
"std": [
|
27 |
+
0.5,
|
28 |
+
0.5,
|
29 |
+
0.5
|
30 |
+
],
|
31 |
+
"interpolation": "bicubic",
|
32 |
+
"resize_mode": "squash"
|
33 |
+
}
|
34 |
}
|