Views
No views yet
whisper model type —
works with stock onnx-asr, no patches needed). fp32 and int8 (dynamic-quantized)
variants included.oddadmix/lahgtna-v3-small (dialect-balanced, undiacritized targets).
Per the source model card, evaluated across 13 Arabic dialects (Gulf/Saudi, Iraqi,
Egyptian, Syrian, Bahraini, Yemeni, Palestinian, Lebanese, Libyan, Tunisian,
Algerian, Moroccan, Sudanese). Reported overall WER 0.403 / CER 0.153 on the
balanced test set; Gulf/Saudi is the strongest dialect (WER 0.227), Maghrebi
dialects (esp. Tunisian, WER 0.606) are the weakest — consistent with the source
card's own analysis. This ONNX export does not change accuracy; it reproduces the
source model's behavior.1import onnx_asr
2model = onnx_asr.load_model("whisper", "path/to/this/repo") # or quantization="int8"
3print(model.recognize("audio_16khz.wav", language="ar"))ar_eg clips (fp32 and int8): both produce fluent,
near-identical undiacritized Arabic transcriptions consistent with the source
model's reported accuracy (minor dialectal spelling variation vs. the diacritized
FLEURS reference is expected and matches the source model's own behavior, not an
export artifact). fp32 and int8 outputs match closely (int8 = dynamic
weight-only quantization of the encoder + merged decoder).