psyche commited on
Commit
970e3df
1 Parent(s): d16a8e3

Upload processor

Browse files
Files changed (1) hide show
  1. preprocessor_config.json +15 -3
preprocessor_config.json CHANGED
@@ -1,17 +1,29 @@
1
  {
 
2
  "do_normalize": true,
 
 
3
  "do_resize": true,
4
- "image_processor_type": "DetrImageProcessor",
5
  "format": "coco_detection",
6
  "image_mean": [
7
  0.485,
8
  0.456,
9
  0.406
10
  ],
 
11
  "image_std": [
12
  0.229,
13
  0.224,
14
  0.225
15
  ],
16
- "size": {"shortest_edge": 800, "longest_edge": 1333}
17
- }
 
 
 
 
 
 
 
 
 
 
1
  {
2
+ "do_convert_annotations": true,
3
  "do_normalize": true,
4
+ "do_pad": true,
5
+ "do_rescale": true,
6
  "do_resize": true,
 
7
  "format": "coco_detection",
8
  "image_mean": [
9
  0.485,
10
  0.456,
11
  0.406
12
  ],
13
+ "image_processor_type": "DetrImageProcessor",
14
  "image_std": [
15
  0.229,
16
  0.224,
17
  0.225
18
  ],
19
+ "pad_size": {
20
+ "height": 600,
21
+ "width": 600
22
+ },
23
+ "resample": 2,
24
+ "rescale_factor": 0.00392156862745098,
25
+ "size": {
26
+ "height": 600,
27
+ "width": 600
28
+ }
29
+ }