Views
No views yet
| File | Precision | Size | Notes |
|---|---|---|---|
ggml-oriserve-hinglish-fp16.bin | fp16 | 148 MB | Recommended. Faithful to the original (matches the PyTorch model). |
ggml-oriserve-hinglish-q8_0.bin | q8_0 | 78 MB | Near-lossless, smaller. |
ggml-oriserve-hinglish-q5_0.bin | q5_0 | 53 MB | Smallest; minor accuracy drift on short clips. |
whisper-cli -m ggml-oriserve-hinglish-fp16.bin -f audio.wav -l himodel.safetensors with whisper.cpp's
models/convert-h5-to-ggml.py (fp16 default), then quantized with whisper-quantize
(q8_0 / q5_0). The checkpoint is a standard WhisperForConditionalGeneration
(Whisper-base: d_model 512, 6+6 layers, 80 mel bins), so it converts cleanly.