visheratin commited on
Commit
f9702fa
1 Parent(s): 1380df3

Update open_clip_config.json

Browse files
Files changed (1) hide show
  1. open_clip_config.json +32 -15
open_clip_config.json CHANGED
@@ -1,17 +1,34 @@
1
  {
2
- "model_cfg": {},
3
- "preprocess_cfg": {
4
- "mean": [
5
- 0.5,
6
- 0.5,
7
- 0.5
8
- ],
9
- "std": [
10
- 0.5,
11
- 0.5,
12
- 0.5
13
- ],
14
- "interpolation": "bicubic",
15
- "resize_mode": "squash"
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
  }