Modelsopenaiwhisper-large-v3-turbo
provideropenai /

whisper-large-v3-turbo

0.07 DZD/ minute

Whisper is a state-of-the-art model for automatic speech recognition (ASR) and speech translation, proposed in the paper "Robust Speech Recognition via Large-Scale Weak Supervision" by Alec Radford et al. from OpenAI. Trained on >5M hours of labeled data, Whisper demonstrates a strong ability to generalise to many datasets and domains in a zero-shot setting. Whisper large-v3-turbo is a finetuned version of a pruned Whisper large-v3. In other words, it's the exact same model, except that the number of decoding layers have reduced from 32 to 4. As a result, the model is way faster, at the expense of a minor quality degradation.

Public
whisper-large-v3-turbo
ArchitectureDense
Context Windowspeech-recognition

By: OpenAI · Released: October 2024 · License: MIT


Core Specs

PropertyValue
Parameters809M
Base ModelWhisper large-v3 (pruned + fine-tuned)
Encoder Layers32 (unchanged)
Decoder Layers4 (pruned from 32)
Mel Spectrogram Bins128
Languages99+
InputAudio
OutputText (transcription)
Max Audio Chunk30 seconds
VRAM~6 GB
Model File Size~1.6 GB

Architecture

Same encoder-decoder Transformer as large-v3. The only change: decoder pruned from 32 → 4 layers, then fine-tuned via knowledge distillation to recover accuracy.

Encoder handles audio understanding (heavy lifting) — untouched.
Decoder handles token generation — reduced to 4 layers (same as tiny).

⚠️ Translation task excluded from Turbo's fine-tuning data — use large-v3 if you need speech translation.


Performance vs. Family

ModelParamsDecoder LayersVRAMSpeed
tiny39M4~1 GBfastest
base74M6~1 GB—
medium769M24~5 GB—
large-v3-turbo809M4~6 GB~8× faster than large-v3
large-v31.55B32~10 GBbaseline

Word Error Rate: ~12% — retains ~99% of large-v3 accuracy.


Quick Start

PYTHON
from transformers import pipeline

pipe = pipeline(
    "automatic-speech-recognition",
    model="openai/whisper-large-v3-turbo",
    device="cuda"
)

result = pipe("audio.mp3")
print(result["text"])

Hosted APIs

ProviderNotes
GroqFastest hosted inference
Cloudflare Workers AI@cf/openai/whisper-large-v3-turbo
Hugging Faceopenai/whisper-large-v3-turbo
OpenRouteropenai/whisper-large-v3-turbo