From 15a8194accba38d6ee78f5536094b9824169f40a Mon Sep 17 00:00:00 2001 From: groupuser Date: Thu, 16 Oct 2025 07:02:47 +0000 Subject: [PATCH] Automatically created by CHEETAH --- config.pbtxt | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 config.pbtxt diff --git a/config.pbtxt b/config.pbtxt new file mode 100644 index 0000000..b88d17f --- /dev/null +++ b/config.pbtxt @@ -0,0 +1,31 @@ +# 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 ] + } +] + +output [ + { + name: "Softmax" + data_type: TYPE_FP32 + dims: [ -1, 10 ] + } +] + + + + +instance_group [ + { + kind: KIND_AUTO + count: 1 + } +]