tsavage68 commited on
Commit
477ded6
·
verified ·
1 Parent(s): 8796fe5

Upload processor

Browse files
Files changed (1) hide show
  1. preprocessor_config.json +28 -0
preprocessor_config.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": {
3
+ "height": 224,
4
+ "width": 224
5
+ },
6
+ "do_center_crop": true,
7
+ "do_normalize": false,
8
+ "do_rescale": true,
9
+ "do_resize": true,
10
+ "do_zero_centering": true,
11
+ "image_mean": [
12
+ 0.5,
13
+ 0.5,
14
+ 0.5
15
+ ],
16
+ "image_processor_type": "VivitImageProcessor",
17
+ "image_std": [
18
+ 0.5,
19
+ 0.5,
20
+ 0.5
21
+ ],
22
+ "offset": true,
23
+ "resample": 2,
24
+ "rescale_factor": 0.00784313725490196,
25
+ "size": {
26
+ "shortest_edge": 256
27
+ }
28
+ }