Richarizardd commited on
Commit
b179789
·
verified ·
1 Parent(s): 87b2bb8

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +37 -0
config.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architecture": "vit_large_patch16_224",
3
+ "patch_size": 16,
4
+ "img_size": 224,
5
+ "init_values": 1.0,
6
+ "num_classes": 0,
7
+ "num_features": 1024,
8
+ "global_pool": "token",
9
+ "dynamic_img_size": true,
10
+ "pretrained_cfg": {
11
+ "tag": "uni_mass100k",
12
+ "custom_load": true,
13
+ "crop_pct": 1,
14
+ "input_size": [
15
+ 3,
16
+ 224,
17
+ 224
18
+ ],
19
+ "fixed_input_size": false,
20
+ "interpolation": "bilinear",
21
+ "mean": [
22
+ 0.485,
23
+ 0.456,
24
+ 0.406
25
+ ],
26
+ "std": [
27
+ 0.229,
28
+ 0.224,
29
+ 0.225
30
+ ],
31
+ "num_classes": 0,
32
+ "pool_size": null,
33
+ "first_conv": "patch_embed.proj",
34
+ "classifier": "head",
35
+ "license": "CC BY-NC-ND 4.0"
36
+ }
37
+ }