Live transcription · Multilingual

Whisper Large v3 Turbo

Fast multilingual Whisper built from pruned large-v3

Multilingual · 1.9× · 888.2 MB

Install in OpenASR Desktop

Opens the desktop app and downloads this model for you.

Don't have the app yet? Download OpenASR Desktop

On-deviceOn this computer
interview.m4a12:04

let's line up this week's release plan,

the beta build can ship on Friday,

then loop in design and QA,

Why it fits

Whisper Large v3 Turbo is OpenAI's faster variant of Whisper large-v3: it keeps the same Whisper architecture and multilingual speech-recognition/translation interface, but reduces the decoder depth from 32 layers to 4. The upstream card describes the result as much faster with only a minor quality trade-off, while retaining Whisper's broad zero-shot behavior from training on more than five million hours of labeled audio. This OpenASR repo repackages the original openai/whisper-large-v3-turbo weights as .oasr packs that run natively in the OpenASR runtime with no Python at inference time. For most users the q8_0 build is the recommended default; q4_k is for tighter memory budgets and fp16 is for verification or maximum fidelity.

What you can do with it

  • Turbo decoder — prunes Whisper large-v3's decoder from 32 layers to 4 for much faster generation
  • 🌍 Multilingual ASR — transcribes many languages and can translate speech to English
  • 🎙️ Zero-shot robustness — inherits Whisper's large-scale weak-supervision training across noisy domains
  • 🦀 Native in OpenASR.oasr packs run with no Python at inference, engineered for peak performance on CPU & GPU

Other models

Developer details CLI commands, file hashes, and per-quant downloads — for scripting and verification.

Downloads by quantization

Pull stringSizeQuant
whisper-large-v3-turbo:fp16 1.5 GB fp16
open .oasr
whisper-large-v3-turbo:q8default 888.2 MB q8_0
open .oasr
whisper-large-v3-turbo:q4 838.2 MB q4_k
open .oasr

Model facts

Size888.2 MB
Speed1.9× real-time
LanguageMultilingual
Familywhisper
Vendoropenai
Released2024-10-01
Peak memory2.1 GB
Quantizationq8_0
LicenseMIT
Revision352b5f14883c38e3db2bbd58c816fd0d16921ae7
sha2567aadbdd35ab260d127f50affaecae0a51f5793e700afe212cefb0e74a99f95da

Usage

These are CLI / local-server examples. The desktop app runs this model without typing a command — use Install above.

bash · transcribe a file
$ openasr pull whisper-large-v3-turbo:q8
↓ whisper-large-v3-turbo.oasr  888.2 MB  ✓ verified sha256
$ openasr transcribe meeting.wav --backend native --model-pack ~/.openasr/models/whisper-large-v3-turbo/q8_0/whisper-large-v3-turbo-q8_0.oasr
✓ local transcript · 0 bytes sent
bash · serve a local API
$ openasr serve --backend native --model-pack ~/.openasr/models/whisper-large-v3-turbo/q8_0/whisper-large-v3-turbo-q8_0.oasr --addr 127.0.0.1:8080
▶ http://127.0.0.1:8080 · model=whisper-large-v3-turbo · 0 bytes will leave this host
python · client.py
from openai import OpenAI
client = OpenAI(base_url="http://127.0.0.1:8080/v1", api_key="local")
audio = open("meeting.wav", "rb")
text = client.audio.transcriptions.create(model="whisper-large-v3-turbo", file=audio)