Views
No views yet
| Tensor | Shape | dtype | Notes |
|---|---|---|---|
input audio_signal | [1, 80, T] | float32 | 80-bin log-mel (slaney), 16 kHz |
input length | [1] | int64 | number of mel frames T |
output embs | [1, 192] | float32 | L2-normalizable speaker embedding |
1const ort = await import('https://cdn.jsdelivr.net/npm/onnxruntime-web/dist/ort.wasm.bundle.min.mjs');
2const session = await ort.InferenceSession.create(
3 'https://huggingface.co/FluffyBunnies/titanet-small-onnx/resolve/main/titanet.onnx',
4 { executionProviders: ['wasm'] });