Views
No views yet
tiny/
├── whisper-tiny-q*.gguf # Candle-compatible GGUF models (root)
├── model-tiny-q80.gguf # Candle-compatible legacy naming (q8_0 format)
├── config-tiny.json # Model configuration for Candle
├── tokenizer-tiny.json # Tokenizer for Candle
└── whisper.cpp/ # whisper.cpp-compatible models
└── whisper-tiny-q*.gguf
whisper-tiny-*.gguf): Use with Candle (Rust ML framework)model. prefix (e.g., model.encoder.conv1.weight)config-tiny.json and tokenizer-tiny.jsonmodel. prefix (e.g., encoder.conv1.weight).gguf files, not .bin files| Format | Quality | Use Case |
|---|---|---|
| q2_k | Smallest | Extreme compression |
| q3_k | Small | Mobile devices |
| q4_0 | Small | Legacy compatibility |
| q4_k | Small | - |
| q4_1 | Small | Legacy with bias |
| q5_0 | Good | Legacy compatibility |
| q5_k | Good | Good quality |
| q5_1 | Very Good | Legacy with bias |
| q6_k | Excellent | Near-lossless |
| q8_0 | Excellent | Recommended for production Minimal loss, benchmarking |
1# Run Candle Whisper with local quantized model
2cargo run --example whisper --release -- \
3 --features symphonia \
4 --quantized \
5 --model tiny \
6 --model-id oxide-lab/whisper-tiny-GGUF 1# Use models from whisper.cpp/ subdirectory
2./whisper.cpp/build/bin/whisper-cli \
3 --model models/openai/tiny/whisper.cpp/whisper-tiny-q4_k.gguf \
4 --file audio.wavmodel. prefix to tensor names for Candle compatibility1@misc{radford2022whisper,
2 doi = {10.48550/ARXIV.2212.04356},
3 url = {https://arxiv.org/abs/2212.04356},
4 author = {Radford, Alec and Kim, Jong Wook and Xu, Tao and Brockman, Greg and McLeavey, Christine and Sutskever, Ilya},
5 title = {Robust Speech Recognition via Large-Scale Weak Supervision},
6 publisher = {arXiv},
7 year = {2022},
8 copyright = {arXiv.org perpetual, non-exclusive license}
9}