Files
FastDeploy/examples/vision/detection/yolov5/serving/models/postprocess/config.pbtxt
heliqi 69be5b5232 fastdeploy support serving (#272)
* fd support serving

* fd support serving optimize dir

* optimize code

Co-authored-by: Jason <jiangjiajun@baidu.com>
2022-09-27 14:07:19 +08:00

30 lines
360 B
Plaintext

name: "postprocess"
backend: "python"
input [
{
name: "POST_INPUT_0"
data_type: TYPE_FP32
dims: [ -1, -1, -1]
},
{
name: "POST_INPUT_1"
data_type: TYPE_STRING
dims: [ -1 ]
}
]
output [
{
name: "POST_OUTPUT"
data_type: TYPE_STRING
dims: [ -1 ]
}
]
instance_group [
{
count: 1
kind: KIND_CPU
}
]