vananhle commited on
Commit
5d860b2
1 Parent(s): 1bd5570

Upload preprocessor_config.json

Browse files
Files changed (1) hide show
  1. preprocessor_config.json +47 -0
preprocessor_config.json ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_valid_processor_keys": [
3
+ "images",
4
+ "do_resize",
5
+ "size",
6
+ "resample",
7
+ "do_center_crop",
8
+ "crop_size",
9
+ "do_rescale",
10
+ "rescale_factor",
11
+ "rescale_offset",
12
+ "do_normalize",
13
+ "image_mean",
14
+ "image_std",
15
+ "include_top",
16
+ "return_tensors",
17
+ "data_format",
18
+ "input_data_format"
19
+ ],
20
+ "crop_size": {
21
+ "height": 289,
22
+ "width": 289
23
+ },
24
+ "do_center_crop": false,
25
+ "do_normalize": true,
26
+ "do_rescale": true,
27
+ "do_resize": true,
28
+ "image_mean": [
29
+ 0.485,
30
+ 0.456,
31
+ 0.406
32
+ ],
33
+ "image_processor_type": "EfficientNetImageProcessor",
34
+ "image_std": [
35
+ 0.47853944,
36
+ 0.4732864,
37
+ 0.47434163
38
+ ],
39
+ "include_top": true,
40
+ "resample": 0,
41
+ "rescale_factor": 0.00392156862745098,
42
+ "rescale_offset": false,
43
+ "size": {
44
+ "height": 224,
45
+ "width": 224
46
+ }
47
+ }