56 lines
732 B
Plaintext
56 lines
732 B
Plaintext
# Triton backend to use
|
|
name: "tensorflow-fashion-mnist"
|
|
backend: "tensorflow"
|
|
platform: "tensorflow_savedmodel"
|
|
max_batch_size: 0
|
|
|
|
input [
|
|
{
|
|
name: "Conv1_input"
|
|
data_type: TYPE_FP32
|
|
dims: [ -1, 28, 28, 1 ]
|
|
},
|
|
{
|
|
name: "Conv2_input"
|
|
data_type: TYPE_UINT16
|
|
dims: [ -1, 16 ]
|
|
reshape {
|
|
shape: [ 1, 16 ]
|
|
}
|
|
},
|
|
{
|
|
name: "Conv3_input"
|
|
data_type: TYPE_UINT16
|
|
dims: [ 123 ]
|
|
reshape {
|
|
shape: [ 123 ]
|
|
}
|
|
}
|
|
]
|
|
|
|
output [
|
|
{
|
|
name: "Softmax"
|
|
data_type: TYPE_FP32
|
|
dims: [ -1, 10 ]
|
|
},
|
|
{
|
|
name: "Softmax2"
|
|
data_type: TYPE_UINT16
|
|
dims: [ 1 ]
|
|
reshape {
|
|
shape: [ 1 ]
|
|
}
|
|
}
|
|
]
|
|
|
|
|
|
|
|
|
|
instance_group [
|
|
{
|
|
kind: KIND_AUTO
|
|
count: 1
|
|
}
|
|
]
|