Views
No views yet
speech-core and sherpa-onnx-compatible runtimes.Part of the soniqo.audio speech toolkit. This is the ONNX Runtime bundle used byspeech-corefor server, desktop, and Android-style runtimes; the graphs remain sherpa-onnx compatible. Browse ONNX bundles in the soniqo ONNX collection.
| Source | openai/whisper-large-v3-turbo |
| Export format | ONNX for sherpa-onnx |
| Variants | FP32, INT8, FP16 |
| Runtime | speech-core OnnxWhisperStt / ONNX Runtime; sherpa-onnx compatible |
| Total artifact size | 5619.69 MiB |
*.onnx.data files. Large-style bundles also use external FP32 *.weights files. Keep external-data files beside their matching .onnx files.| File | Size | Description |
|---|---|---|
turbo-decoder.fp16.onnx | 0.59 MB | Whisper decoder graph |
turbo-decoder.fp16.onnx.data | 302.88 MB | External tensor data for the adjacent ONNX graph |
turbo-decoder.int8.onnx | 344.34 MB | Whisper decoder graph |
turbo-decoder.onnx | 0.97 MB | Whisper decoder graph |
turbo-decoder.weights | 605.76 MB | External tensor data for the adjacent ONNX graph |
turbo-encoder.fp16.onnx | 0.61 MB | Whisper encoder graph |
turbo-encoder.fp16.onnx.data | 1239.93 MB | External tensor data for the adjacent ONNX graph |
turbo-encoder.int8.onnx | 643.37 MB | Whisper encoder graph |
turbo-encoder.onnx | 0.6 MB | Whisper encoder graph |
turbo-encoder.weights | 2479.86 MB | External tensor data for the adjacent ONNX graph |
turbo-tokens.txt | 0.78 MB | Tokenizer tokens for speech-core and sherpa-onnx-compatible runtimes |
1#include <speech_core/models/onnx_whisper_stt.h>
2
3speech_core::OnnxWhisperStt stt(
4 "turbo-encoder.int8.onnx",
5 "turbo-decoder.int8.onnx",
6 "turbo-tokens.txt");
7
8auto result = stt.transcribe(audio, length, 16000);1import sherpa_onnx
2
3recognizer = sherpa_onnx.OfflineRecognizer.from_whisper(
4 encoder="turbo-encoder.fp16.onnx",
5 decoder="turbo-decoder.fp16.onnx",
6 tokens="turbo-tokens.txt",
7 language="en",
8 task="transcribe",
9 provider="cpu",
10)sherpa-onnx CPU provider, language hint supplied, temperature fallback disabled.| Dataset | INT8 WER / RTF | FP16 WER / RTF |
|---|---|---|
fleurs-en_us | 5.32% / 0.239 | 5.27% / 0.189 |
fleurs-fr_fr | 6.84% / 0.188 | 6.57% / 0.215 |
fleurs-ar_eg | 14.53% / 0.201 | 14.30% / 0.215 |