mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2026-04-29 20:00:05 +08:00
[Serving] add ppdet serving example (#641)
* serving support ppdet * Update README.md update ppadet/README
This commit is contained in:
@@ -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
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user