Views
No views yet
| File | Purpose |
|---|---|
encoder.onnx + encoder.onnx.data | Chunked transformer encoder, 24 layers x 1024 hidden |
decoder.onnx + decoder.onnx.data | 2-layer LSTM predictor, 640 hidden |
joint.onnx + joint.onnx.data | RNN-T joint network, vocab 1024 plus blank |
silero_vad.onnx | Voice activity detector |
vocab.txt / tokenizer.json | SentencePiece vocabulary (1025 tokens incl. blank) |
genai_config.json, model_config.json, audio_processor_config.json | Runtime configuration |
max_symbols_per_step=101import onnxruntime as ort
2encoder = ort.InferenceSession("encoder.onnx")
3decoder = ort.InferenceSession("decoder.onnx")
4joint = ort.InferenceSession("joint.onnx")
5# See genai_config.json for the per-session input shapes and cache layout.