Skip to content

Commit

Permalink
Create config.pbtxt
Browse files Browse the repository at this point in the history
  • Loading branch information
secureness committed May 8, 2024
1 parent 6022938 commit b78d671
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions triton/triton-inference-server/ASimpleModel/config.pbtxt
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: "MODEL_NAME"
backend: "python"

input [
{
name: "input__0"
data_type: TYPE_FP32
dims: [ -1, 3 ]
}
]

output [
{
name: "output__0"
data_type: TYPE_FP32
dims: [ -1, 1 ]
}
]

instance_group [
{
count: 1
kind: KIND_CPU
}
]

parameters [
{
key: "INFERENCE_MODE"
value: { string_value: "true" }
}
]

0 comments on commit b78d671

Please sign in to comment.