config.pbtxt 567 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. name: "vocoder"
  2. backend: "python"
  3. max_batch_size: ${triton_max_batch_size}
  4. dynamic_batching {
  5. max_queue_delay_microseconds: ${max_queue_delay_microseconds}
  6. }
  7. parameters [
  8. {
  9. key: "model_dir",
  10. value: {string_value:"${model_dir}"}
  11. }
  12. ]
  13. input [
  14. {
  15. name: "mel"
  16. data_type: TYPE_FP32
  17. dims: [80, -1]
  18. },
  19. {
  20. name: "finalize"
  21. data_type: TYPE_BOOL
  22. dims: [ 1 ]
  23. reshape: { shape: [ ] }
  24. }
  25. ]
  26. output [
  27. {
  28. name: "tts_speech"
  29. data_type: TYPE_FP32
  30. dims: [ -1 ]
  31. }
  32. ]
  33. instance_group [
  34. {
  35. count: 1
  36. kind: KIND_CPU
  37. }
  38. ]