My triton model config.pbtxt file looks like below. How can I pass inputs and outputs using tritonclient and perform an infer request.
name: “cifar10”
platform: “tensorflow_savedmodel”
max_batch_size: 10000
input [
{
name: “input_1”
data_type: TYPE_FP32
dims: [ 32, 32, 3 ]
}
]
output [
{
name: “fc10”
data_type: TYPE_FP32
dims: [ 10 ]
}
]
Any help is appreciated as I am very new to using tritonclient python package please