[Serving] add ppdet serving example (#641)

* serving support ppdet

* Update README.md

update ppadet/README
This commit is contained in:
heliqi
2022-11-22 17:38:23 +08:00
committed by GitHub
parent 2cb488217e
commit 38e96451d7
18 changed files with 996 additions and 1 deletions
@@ -0,0 +1,35 @@
name: "preprocess"
backend: "python"
input [
{
name: "preprocess_input"
data_type: TYPE_UINT8
dims: [ -1, -1, -1, 3 ]
}
]
output [
{
name: "preprocess_output1"
data_type: TYPE_FP32
dims: [ -1, 3, -1, -1 ]
},
{
name: "preprocess_output2"
data_type: TYPE_FP32
dims: [ -1, 2 ]
},
{
name: "preprocess_output3"
data_type: TYPE_FP32
dims: [ -1, 2 ]
}
]
instance_group [
{
count: 1
kind: KIND_CPU
}
]