Files
FastDeploy/examples/vision/detection/yolov5/serving/models/runtime/config.pbtxt
heliqi c8c204f1c4 [Serving]Update yolov5 config.pbtxt (#938)
* Update config.pbtxt

* Update yolov5 serving config
2022-12-21 19:58:36 +08:00

46 lines
1.0 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# optional, If name is specified it must match the name of the model repository directory containing the model.
name: "runtime"
backend: "fastdeploy"
max_batch_size: 16
# Input configuration of the model
input [
{
# input name
name: "images"
# input type such as TYPE_FP32、TYPE_UINT8、TYPE_INT8、TYPE_INT16、TYPE_INT32、TYPE_INT64、TYPE_FP16、TYPE_STRING
data_type: TYPE_FP32
# input shape The batch dimension is omitted and the actual shape is [batch, c, h, w]
dims: [ 3, -1, -1 ]
}
]
# The output of the model is configured in the same format as the input
output [
{
name: "output0"
data_type: TYPE_FP32
dims: [ -1, -1 ]
}
]
# Number of instances of the model
instance_group [
{
# The number of instances is 1
count: 1
# Use CPU, GPU inference option is:KIND_GPU
kind: KIND_CPU
}
]
optimization {
execution_accelerators {
cpu_execution_accelerator : [ {
# use ONNXRuntime engine
name: "onnxruntime",
# set cpu threads
parameters { key: "cpu_threads" value: "4" }
}]
}}