28 lines
509 B
Plaintext
28 lines
509 B
Plaintext
# Triton backend to use
|
|
name: "tensorflow-fashion-mnist"
|
|
platform: "tensorflow_savedmodel"
|
|
backend: "tensorflow"
|
|
max_batch_size: 0
|
|
|
|
# Triton should expect as input a single string
|
|
# input of variable length named 'text_input'
|
|
input [
|
|
{
|
|
name: "Conv1_input"
|
|
data_type: TYPE_FP32
|
|
dims: [-1, 28, 28, 1]
|
|
}
|
|
]
|
|
|
|
|
|
# Triton should expect to respond with a single string
|
|
# output of variable length named 'text_output'
|
|
output [
|
|
{
|
|
name: "Softmax"
|
|
data_type: TYPE_FP32
|
|
dims: [-1, 10]
|
|
}
|
|
]
|
|
|