-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathengine_group.json
83 lines (81 loc) · 2.32 KB
/
engine_group.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[
{
"graph_id": 0,
"device_id": 0,
"graph_name": "ppocr",
"elements": [
{
"element_id": 5000,
"element_config": "../ppocr/config/decode.json",
"ports": {
"input": [
{
"port_id": 0,
"is_sink": false,
"is_src": true
}
]
}
},
{
"element_id": 5001,
"element_config": "../ppocr/config/ppocr_det_group.json",
"inner_elements_id": [10001, 10002, 10003]
},
{
"element_id": 5004,
"element_config": "../ppocr/config/distributor_frame_class.json"
},
{
"element_id": 6001,
"element_config": "../ppocr/config/ppocr_rec_group.json",
"inner_elements_id": [20001, 20002, 20003]
},
{
"element_id": 5005,
"element_config": "../ppocr/config/converger.json",
"ports": {
"output": [
{
"port_id": 0,
"is_sink": true,
"is_src": false
}
]
}
}
],
"connections": [
{
"src_element_id": 5000,
"src_port": 0,
"dst_element_id": 5001,
"dst_port": 0
},
{
"src_element_id": 5001,
"src_port": 0,
"dst_element_id": 5004,
"dst_port": 0
},
{
"src_element_id": 5004,
"src_port": 0,
"dst_element_id": 5005,
"dst_port": 0
},
{
"src_element_id": 5004,
"src_port": 1,
"dst_element_id": 6001,
"dst_port": 0
},
{
"src_element_id": 6001,
"src_port": 0,
"dst_element_id": 5005,
"dst_port": 1
}
]
}
]