idanba commited on
Commit
bb15524
1 Parent(s): d7035e4

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +28 -0
config.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "preprocess": [
3
+ {
4
+ "AspectPreservingResizeWithPad": {
5
+ "name": "AspectPreservingResizeWithPad",
6
+ "new_height": 640,
7
+ "new_width": 640,
8
+ "pad_value": 114
9
+ }
10
+ },
11
+ {
12
+ "Normalize": {
13
+ "name": "Normalization",
14
+ "mean": 0,
15
+ "std": 255
16
+ }
17
+ }
18
+ ],
19
+ "task_type": "Object_Detection",
20
+ "inputs_type": [
21
+ "RGB"
22
+ ],
23
+ "outputs_type": [
24
+ "boxes",
25
+ "scores",
26
+ "classes"
27
+ ],
28
+ }