Questions using Silero with Microsoft.ML.OnnxRuntime #216
-
Hi. I am playing around with silero-vad and I think I've had some success, but I have some questions about the input and output. Background: Questions: Any insight into this would be really helpful. I think I am getting close, I just need to understanding these inputs/outputs. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi,
You can just follow this wrapper logic in your code: Lines 10 to 52 in 7c671a7 input is just input samples, h0 and c0 are just internal model states that are kept between iterations. We did not find an easier way to do so with ONNX.
This line should help: Lines 47 to 50 in 7c671a7 |
Beta Was this translation helpful? Give feedback.
Hi,
You can just follow this wrapper logic in your code:
silero-vad/utils_vad.py
Lines 10 to 52 in 7c671a7