The model is stateful — LSTM hidden/cell state and a 64-sample context buffer carry across calls.
Tensor Names
Tensor
Shape
stft.conv.weight
[258, 1, 256]
encoder.{0-3}.conv.weight
Conv weights (BN-fused / reparameterized)
encoder.{0-3}.conv.bias
Conv biases
decoder.lstm.weight_ih_l0
[512, 128]
decoder.lstm.weight_hh_l0
[512, 128]
decoder.lstm.bias_ih_l0
[512]
decoder.lstm.bias_hh_l0
[512]
decoder.output.weight
[1, 128, 1]
decoder.output.bias
[1]
Usage
Used by vad-rs for client-side speech detection in the browser (via WASM + candle-core). See the original silero-vad repository for Python/ONNX usage examples and documentation.