valentinocc commited on
Commit
a238b54
·
verified ·
1 Parent(s): f1f1ef5

Upload feature extractor

Browse files
Files changed (1) hide show
  1. preprocessor_config.json +29 -21
preprocessor_config.json CHANGED
@@ -1,21 +1,29 @@
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
- }
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_pct": 1.0,
3
+ "crop_size": {
4
+ "height": 224,
5
+ "width": 224
6
+ },
7
+ "do_center_crop": true,
8
+ "do_normalize": true,
9
+ "do_reduce_labels": false,
10
+ "do_rescale": true,
11
+ "do_resize": true,
12
+ "image_mean": [
13
+ 0.485,
14
+ 0.456,
15
+ 0.406
16
+ ],
17
+ "image_processor_type": "MobileNetV2FeatureExtractor",
18
+ "image_std": [
19
+ 0.229,
20
+ 0.224,
21
+ 0.225
22
+ ],
23
+ "resample": 2,
24
+ "rescale_factor": 0.00392156862745098,
25
+ "size": {
26
+ "height": 224,
27
+ "width": 224
28
+ }
29
+ }