Skip to content

Latest commit

 

History

History
180 lines (137 loc) · 8.03 KB

File metadata and controls

180 lines (137 loc) · 8.03 KB

Whisper medium

OpenAI's openai/whisper-medium ported to transcribe.cpp. A 769M-parameter encoder-decoder transformer (audio encoder + autoregressive text decoder with cross-attention).

What it's for

Offline multilingual speech-to-text and any-language → English speech translation. The model auto-detects the audio's language (99 languages covered) and emits a transcript in that language; passing language="<code>" and task="translate" to the underlying whisper_full_params produces an English translation instead. transcribe-cli reads a 16 kHz mono WAV and returns the transcript text. Long audio is handled via 30-second chunked decoding.

See the upstream model card for training data, intended use, and the original evaluation methodology.

Licensed Apache-2.0. Ported from upstream commit abdf7c3, pinned 2026-04-25. Validated against the transformers reference at transcribe.cpp commit 5.6.1 on 2026-04-26.

Download

Quantization Download Size WER (LibriSpeech test-clean)
F32 whisper-medium-F32.gguf 2.85 GB 2.63%
F16 whisper-medium-F16.gguf 1.44 GB 2.63%
Q8_0 whisper-medium-Q8_0.gguf 793 MB 2.64%
Q6_K whisper-medium-Q6_K.gguf 618 MB 2.59%
Q5_K_M whisper-medium-Q5_K_M.gguf 556 MB 2.62%
Q4_K_M whisper-medium-Q4_K_M.gguf 481 MB 2.59%

WER measured on the full LibriSpeech test-clean split (2620 utterances) with transcribe.cpp's default greedy decode and segment timestamps enabled — the same runs summarized in the Whisper family table. Numbers come from a single Metal-backed run; Metal's non-deterministic parallel reductions add ~0.1pp of run-to-run variance on the noise floor, and quantization is otherwise generally WER-neutral. See the WER methodology for the harness.

Quick Start

cmake -B build
cmake --build build

build/bin/transcribe-cli \
  -m models/whisper-medium/whisper-medium-Q8_0.gguf \
  samples/jfk.wav

If your audio is not already 16 kHz mono WAV, convert it first:

ffmpeg -i input.mp3 -ar 16000 -ac 1 output.wav

Performance

Cells are wall-clock latency (mean over 3 iterations after 1 warmup), with speedup over realtime in parentheses. Units: ms below 1 s, s above (2 decimal places). Decode latency dominates as model size grows; the encoder is only run once per 30-second window.

Apple M4 Max

Backend Sample Q8_0 Q4_K_M
Metal jfk (11.0s) 280.0 ms (39.3×) 270.9 ms (40.6×)
Metal dots (35.3s) 802.5 ms (44.0×) 759.2 ms (46.5×)
CPU jfk (11.0s) 4.75 s (2.3×) 3.90 s (2.8×)
CPU dots (35.3s) 9.62 s (3.7×) 7.93 s (4.5×)

macOS 26.4.1, transcribe.cpp e0fa0f6.

Benchmark reproduction:

uv run scripts/bench/run.py \
  --models whisper-medium \
  --quants q8_0,q4_k_m \
  --samples jfk,dots \
  --backends metal,cpu \
  --iters 3 --warmup 1 \
  --name whisper-medium-publication

AMD Ryzen 7 PRO 4750U

Backend Sample Q8_0 Q4_K_M
Vulkan jfk (11.0s) 3.00 s (3.7×) 2.83 s (3.9×)
Vulkan dots (35.3s) 7.03 s (5.0×) 6.77 s (5.2×)
CPU jfk (11.0s) 13.14 s (0.8×) 10.47 s (1.1×)
CPU dots (35.3s) 27.87 s (1.3×) 22.57 s (1.6×)

Fedora 43, transcribe.cpp 2ab01b8. Vulkan device: AMD Radeon Graphics (RADV RENOIR).

Benchmark reproduction:

uv run scripts/bench/run.py \
  --models whisper-medium \
  --quants q8_0,q4_k_m \
  --samples jfk,dots \
  --backends cpu,vulkan \
  --iters 3 --warmup 1 \
  --name whisper-medium-publication

Numerical Validation

transcribe.cpp is validated tensor-by-tensor against the transformers reference (WhisperForConditionalGeneration, fp32 CPU) on the manifest's cases (samples/jfk.wav and samples/german.wav). All 23 checkpointed tensors fall within per-variant tolerance, and the transcripts match the HF reference verbatim. Tolerance budget lives at tests/tolerances/whisper-medium.json. Last validated at commit 1854f57.

Field Value
Reference transformers 5.6.1 (WhisperForConditionalGeneration, CPU fp32)
Manifest tests/golden/whisper/whisper-medium.manifest.json
Tolerance file tests/tolerances/whisper-medium.json
Command uv run scripts/validate.py all --family whisper --variant whisper-medium

Selected tensors (worst observed across cases; see tolerance file for per-tensor budgets):

Tensor Max abs diff Mean abs diff Notes
enc.mel.in 3.946e-05 1.396e-07 fp32 mixed-radix FFT vs torch fp64 frontend
enc.conv1.out 6.765e-06 6.724e-08 fp32 conv stem
enc.conv2.out 2.050e-05 3.044e-07 stride-2 conv stem (matches enc.embed.out)
enc.block.0.out 2.295e-05 7.375e-07 first encoder block
enc.block.23.out 1.220e-01 1.999e-05 final encoder block (peak signal grows with depth)
enc.final 1.661e-02 1.164e-05 post-LN encoder output
dec.token_emb 0.000e+00 0.000e+00 exact zero-drift (ggml_get_rows on the F32 GGUF)
dec.block.0.out 3.910e-05 1.036e-06 first decoder block, prompt pass
dec.block.23.out 2.548e-03 1.848e-05 final decoder block (accumulated)
dec.out_before_head 8.469e-04 3.497e-05 post final LN, pre-vocab projection
dec.logits_raw 5.851e-04 6.196e-05 vocab projection (raw logits)
dec.logits 7.286e-04 8.941e-05 log-softmax over vocab
dec.logits_raw.gen20 7.176e-05 4.527e-05 step-20 logits (KV-cached path)

The C++ mel frontend (Slaney filterbank + Hann periodic window + whisper-style log-mel compression) drives enc.mel.in to fp32-vs-fp64 STFT precision drift; downstream tensors stay within budget. KV-cached decoder runs through F16 self/cross caches by default — flip with --kv-type f32 for tighter parity.

Reproduction

Convert

The whisper converter loads from a Hugging Face checkpoint and emits a reference-dtype GGUF.

uv run --project scripts/envs/whisper \
  scripts/convert-whisper.py openai/whisper-medium \
  --revision abdf7c3

Quantize

Run transcribe-quantize once per target quant. Example for Q8_0; repeat for the other shipped presets:

build/bin/transcribe-quantize \
  models/whisper-medium/whisper-medium-F32.gguf \
  models/whisper-medium/whisper-medium-Q8_0.gguf \
  --quant Q8_0

Validate

uv run scripts/validate.py all --family whisper --variant whisper-medium

Run real-model tests

cmake -B build -DTRANSCRIBE_BUILD_REAL_MODEL_TESTS=ON
cmake --build build

TRANSCRIBE_WHISPER_GGUF=$PWD/models/whisper-medium/whisper-medium-Q8_0.gguf \
  ctest --test-dir build --output-on-failure -R whisper