Automatically created from 모델 배포(552:triton-python-gu) by 그룹사용자(groupuser)

This commit is contained in:
groupuser 2025-10-30 05:48:07 +00:00
parent 14c6dc5eeb
commit d3d8c13d4e

49
config.pbtxt Normal file

@ -0,0 +1,49 @@
# Triton backend to use
backend: "python"
max_batch_size: 0
input [
{
name: "input0"
data_type: TYPE_BOOL
dims: [ 1 ]
reshape {
shape: [ -2 ]
}
},
{
name: "input1"
data_type: TYPE_UINT64
dims: [ 1, 100 ]
reshape {
shape: [ 150 ]
}
}
]
output [
{
name: "output0"
data_type: TYPE_UINT8
dims: [ 120 ]
reshape {
shape: [ 120, 130 ]
}
}
]
parameters: [
{
key: "model_path",
value: {string_value: "/cheetah/input/model/groupuser/triton-python-model"}
}
]
instance_group [
{
kind: KIND_AUTO
count: 1
}
]