set model files

This commit is contained in:
gyeongmin 2025-10-16 16:36:30 +09:00
parent 69b2c0f448
commit ea60ae9f63
No known key found for this signature in database
GPG Key ID: 58A4348C503C36DA
4 changed files with 0 additions and 30 deletions

BIN
1/model.savedmodel/saved_model.pb (Stored with Git LFS)

Binary file not shown.

@ -1,27 +0,0 @@
# 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]
}
]