JorgeAV commited on
Commit
4244d38
1 Parent(s): 8905fda

Upload preprocessor_config.json

Browse files
Files changed (1) hide show
  1. preprocessor_config.json +15 -10
preprocessor_config.json CHANGED
@@ -1,22 +1,27 @@
1
  {
 
 
 
 
 
 
2
  "do_normalize": true,
3
  "do_rescale": true,
4
  "do_resize": true,
5
  "image_mean": [
6
- 0.5,
7
- 0.5,
8
- 0.5
9
  ],
10
- "image_processor_type": "ViTFeatureExtractor",
11
  "image_std": [
12
- 0.5,
13
- 0.5,
14
- 0.5
15
  ],
16
- "resample": 2,
17
  "rescale_factor": 0.00392156862745098,
18
  "size": {
19
- "height": 256,
20
- "width": 256
21
  }
22
  }
 
1
  {
2
+ "crop_size": {
3
+ "height": 224,
4
+ "width": 224
5
+ },
6
+ "do_center_crop": true,
7
+ "do_convert_rgb": true,
8
  "do_normalize": true,
9
  "do_rescale": true,
10
  "do_resize": true,
11
  "image_mean": [
12
+ 0.485,
13
+ 0.456,
14
+ 0.406
15
  ],
16
+ "image_processor_type": "BitImageProcessor",
17
  "image_std": [
18
+ 0.229,
19
+ 0.224,
20
+ 0.225
21
  ],
22
+ "resample": 3,
23
  "rescale_factor": 0.00392156862745098,
24
  "size": {
25
+ "shortest_edge": 256
 
26
  }
27
  }