-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.pbtxt
72 lines (72 loc) · 1.26 KB
/
config.pbtxt
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
name: "yolov8_ensemble"
platform: "ensemble"
max_batch_size: 0
input [
{
name: "images"
data_type: TYPE_FP32
dims: [ 1,3,640,640 ]
}
]
output [
{
name: "num_detections"
data_type: TYPE_INT32
dims: [1 ]
},
{
name: "detection_boxes"
data_type: TYPE_FP32
dims: [1000,4 ]
},
{
name: "detection_scores"
data_type: TYPE_FP32
dims: [1000]
},
{
name: "detection_classes"
data_type: TYPE_INT32
dims: [1000 ]
}
]
ensemble_scheduling {
step [
{
model_name: "yolov8_tensorrt"
model_version: -1
input_map {
key: "images"
value: "images"
}
output_map {
key: "output0"
value: "output0"
}
},
{
model_name: "postprocess"
model_version: -1
input_map {
key: "INPUT_0"
value: "output0"
}
output_map {
key: "num_detections"
value: "num_detections"
},
output_map {
key: "detection_boxes"
value: "detection_boxes"
},
output_map {
key: "detection_scores"
value: "detection_scores"
},
output_map {
key: "detection_classes"
value: "detection_classes"
}
}
]
}