ravi86 commited on
Commit
cd6abdf
·
verified ·
1 Parent(s): b26b966

Create preprocessor_config.json

Browse files
Files changed (1) hide show
  1. preprocessor_config.json +16 -0
preprocessor_config.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_resize": true,
3
+ "size": {
4
+ "shortest_edge": 256
5
+ },
6
+ "do_center_crop": true,
7
+ "crop_size": {
8
+ "height": 224,
9
+ "width": 224
10
+ },
11
+ "do_normalize": true,
12
+ "image_mean": [0.5, 0.5, 0.5],
13
+ "image_std": [0.5, 0.5, 0.5],
14
+ "resample": 2,
15
+ "feature_extractor_type": "ImageProcessor"
16
+ }