32 lines
377 B
Plaintext
32 lines
377 B
Plaintext
# Triton backend to use
|
|
name: "tensorflow-fashion-mnist"
|
|
backend: "tensorflow"
|
|
platform: "tensorflow_savedmodel"
|
|
max_batch_size: 1
|
|
|
|
input [
|
|
{
|
|
name: "Conv1_input"
|
|
data_type: TYPE_FP32
|
|
dims: [ -1, 28, 28, 1 ]
|
|
}
|
|
]
|
|
|
|
output [
|
|
{
|
|
name: "Softmax"
|
|
data_type: TYPE_FP32
|
|
dims: [ -1, 10 ]
|
|
}
|
|
]
|
|
|
|
|
|
|
|
|
|
instance_group [
|
|
{
|
|
kind: KIND_AUTO
|
|
count: 1
|
|
}
|
|
]
|