config.pbtxt 511 Bytes
Newer Older
Nikhilesh Bhatnagar's avatar
Nikhilesh Bhatnagar committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
name: "asr"
backend: "python"
max_batch_size: 0
input [
  {
    name: "INPUT_AUDIO"
    data_type: TYPE_FP32
    dims: -1
  }
]
input [
  {
    name: "INPUT_LANGUAGE_ID"
    data_type: TYPE_STRING
    dims: 1
  }
]
output [
  {
    name: "OUTPUT_RECOGNIZED_TEXT"
    data_type: TYPE_STRING
    dims: 1
  }
]
parameters: {
  key: "EXECUTION_ENV_PATH",
  value: {string_value: "$$TRITON_MODEL_DIRECTORY/iitm-asr-env"}
}
instance_group [
  {
    count: 1
    kind: KIND_GPU
  }
]
response_cache {
  enable: true
}