namangarg110 commited on
Commit
a42f528
1 Parent(s): da22f2a

Upload preprocessor_config.json

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