itsTomLie commited on
Commit
3caac14
·
verified ·
1 Parent(s): e57d2d8

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
+ "resample": 2,
7
+ "do_center_crop": true,
8
+ "crop_size": {
9
+ "height": 224,
10
+ "width": 224
11
+ },
12
+ "do_normalize": true,
13
+ "image_mean": [0.485, 0.456, 0.406],
14
+ "image_std": [0.229, 0.224, 0.225],
15
+ "do_convert_rgb": true
16
+ }