valentinocc commited on
Commit
1344788
·
verified ·
1 Parent(s): 9bb4e93

Create preprocessor_config.json

Browse files
Files changed (1) hide show
  1. preprocessor_config.json +21 -0
preprocessor_config.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_pct": 0.875,
3
+ "do_center_crop": true,
4
+ "do_normalize": true,
5
+ "do_resize": true,
6
+ "feature_extractor_type": "MobileNetV2FeatureExtractor",
7
+ "image_mean": [
8
+ 0.485,
9
+ 0.456,
10
+ 0.406
11
+ ],
12
+ "image_std": [
13
+ 0.229,
14
+ 0.224,
15
+ 0.225
16
+ ],
17
+ "resample": 2,
18
+ "size": {
19
+ "shortest_edge": 256
20
+ }
21
+ }