triton-python-backend-model/my-config.pbtxt
2025-09-17 00:12:23 +00:00

36 lines
456 B
Plaintext

# Triton backend to use
name: "triton-python-backend-model"
backend: "python"
max_batch_size: 0
input [
{
name: "INPUT"
data_type: TYPE_STRING
dims: [ 1 ]
}
]
output [
{
name: "OUTPUT"
data_type: TYPE_STRING
dims: [ 1 ]
}
]
parameters: [
{
key: "model_path",
value: {string_value: "/cheetah/input/model/groupuser/triton-python-backend-model"}
}
]
instance_group [
{
kind: KIND_AUTO
count: 1
}
]