rwightman HF staff commited on
Commit
5dbde2a
1 Parent(s): f41e926

Create open_clip_config.json

Browse files
Files changed (1) hide show
  1. open_clip_config.json +32 -0
open_clip_config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_cfg": {
3
+ "embed_dim": 1024,
4
+ "vision_cfg": {
5
+ "image_size": 224,
6
+ "layers": 40,
7
+ "width": 1408,
8
+ "head_width": 88,
9
+ "mlp_ratio": 4.3637,
10
+ "patch_size": 14
11
+ },
12
+ "text_cfg": {
13
+ "context_length": 77,
14
+ "vocab_size": 49408,
15
+ "width": 1024,
16
+ "heads": 16,
17
+ "layers": 24
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
+ }