CoolFace
Modelpublic

Younicorn/whisper-large-v3-turbo

sourceHugging Faceapache-2.0updated 4d agoView on Hugging Face
0likes
Model Card

whisper-large-v3-turbo

ONNX builds of `openai/whisper-large-v3-turbo`.

Whisper is OpenAI's automatic speech recognition model, trained on 680 000 hours of multilingual audio. It transcribes and translates speech in 99 languages, and produces segment-level timestamps.

It reads audio in 30-second windows and decodes text one token at a time, which is what makes it robust to accents and background noise and also what makes it slower than models built for one language.

This checkpoint: 809 M parameters — large-v3's encoder with a decoder cut from 32 layers to 4. Much faster, and it does not translate.

Variants

Every variant is the same checkpoint at a different weight precision. Pick a row, download that folder, and read onnx_manifest.json in it for the graph names and their checksums.

VariantSizevs `fp32`WERvs `fp32`
fp161,835 MB÷1.8——
plain-int8864 MB÷3.72.50 %+0.63 pt
plain-int4497 MB÷6.51.66 %-0.21 pt
algo-int4-hqq520 MB÷6.21.46 %-0.41 pt

fp32 is not published for this checkpoint — it is the source format, available from the original repository. It is used above as the reference the other rows are measured against.

Word error rate measured on ten minutes of English speech against a hand-checked transcript, greedy decoding, no voice-activity detection. It is a single corpus in a single language: use it to compare the rows against each other, not as an absolute score.

What the names mean

  • —`fp16` — Half-precision encoder, full-precision decoder. Smaller than fp32 and slower on CPU, where no float16 kernel exists — useful on GPU.
  • —`plain-int8` — 8-bit weights, nothing excluded.
  • —`plain-int4` — 4-bit weights, nothing excluded. Usually the smallest that still works.
  • —`algo-int4-hqq` — 4-bit weights quantized with HQQ rather than round-to-nearest.

The int4 variants are meant for the CPU. On ONNX Runtime's CUDA provider the 4-bit matrix kernel (MatMulNBits) loses precision above 128 rows, which covers every encoder pass.

Licence

These are format conversions. The weights, and the licence they come with, are those of the original checkpoint — see the source repository.