LysandreJik commited on
Commit
1a7065d
1 Parent(s): a480fe4

Config file update

Browse files
Files changed (1) hide show
  1. open_clip_config.json +18 -8
open_clip_config.json CHANGED
@@ -1,20 +1,30 @@
1
  {
2
  "model_cfg": {
3
- "embed_dim": 1024,
4
  "vision_cfg": {
5
  "image_size": 224,
6
- "layers": 32,
7
- "width": 1280,
8
- "head_width": 80,
9
  "patch_size": 14
10
  },
11
  "text_cfg": {
12
  "context_length": 77,
13
  "vocab_size": 49408,
14
- "width": 1024,
15
- "heads": 16,
16
- "layers": 24
17
  }
18
  },
19
- "preprocess_cfg": {}
 
 
 
 
 
 
 
 
 
 
 
20
  }
1
  {
2
  "model_cfg": {
3
+ "embed_dim": 768,
4
  "vision_cfg": {
5
  "image_size": 224,
6
+ "layers": 24,
7
+ "width": 1024,
 
8
  "patch_size": 14
9
  },
10
  "text_cfg": {
11
  "context_length": 77,
12
  "vocab_size": 49408,
13
+ "width": 768,
14
+ "heads": 12,
15
+ "layers": 12
16
  }
17
  },
18
+ "preprocess_cfg": {
19
+ "mean": [
20
+ 0.5,
21
+ 0.5,
22
+ 0.5
23
+ ],
24
+ "std": [
25
+ 0.5,
26
+ 0.5,
27
+ 0.5
28
+ ]
29
+ }
30
  }