Views
No views yet
openai/whisper-large-v3-turbo.| Base model | openai/whisper-large-v3-turbo (MIT) |
| Quantization | Q8_0 (per-32 block, int8 weights + f16 scales) |
| File | model.q8.safetensors |
| Size | 867,485,320 bytes (~827 MiB) |
| SHA-256 | 1014fd3ad4450a2e43e473eebbab485b165fd68cbe932372071d86c522bb5c8e |
| Size vs F16 | 1.86× smaller |
| Quality | Bit-identical transcripts to the F16 model (verified) |
scale = max(|w|) / 127 stored as f16,
q = clamp(round_half_away(w / scale), -127, 127) as int8. Linear/projection
weights are stored as K.qs (int8) + K.scales (f16); layernorm, bias, conv, and
positional-embedding tensors are copied in F16 unchanged.safetensors file uses a layout
specific to the Madi Metal engine (.qs / .scales keys). It is not compatible
with 🤗 Transformers, whisper.cpp (GGML/GGUF), faster-whisper, or other Whisper
runtimes. Use one of those projects' own quantized checkpoints for those runtimes.openai/whisper-large-v3-turbo (also MIT). When redistributing, please retain
attribution to OpenAI's Whisper.