-
Hi, Is the right way to pass in 8k data to the model, or should I upsample the 8k data to 16k and then pass that to the model (or is the latter method wrong)? Thank you in advance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi,
The As for the ONNX model, you have to upsample, because the ONNX model now cannot consume 8 kHz natively. |
Beta Was this translation helpful? Give feedback.
Hi,
The
jit
model natively supports 8 kHz, just check the torch module docstring / and or see how the model is invoked in the utils.As for the ONNX model, you have to upsample, because the ONNX model now cannot consume 8 kHz natively.