|
|
--- |
|
|
license: mit |
|
|
quantized_by: Pomni |
|
|
language: |
|
|
- en |
|
|
base_model: |
|
|
- distil-whisper/distil-small.en |
|
|
pipeline_tag: automatic-speech-recognition |
|
|
datasets: |
|
|
- mozilla-foundation/common_voice_13_0 |
|
|
- facebook/voxpopuli |
|
|
- LIUM/tedlium |
|
|
- MLCommons/peoples_speech |
|
|
- speechcolab/gigaspeech |
|
|
- edinburghcstr/ami |
|
|
tags: |
|
|
- whisper.cpp |
|
|
- ggml |
|
|
- whisper |
|
|
- audio |
|
|
- speech |
|
|
- voice |
|
|
- distil |
|
|
--- |
|
|
# Distil-Small.en quants |
|
|
This is a repository of **GGML quants for [distil-small.en](https://huggingface.co/distil-whisper/distil-small.en)** (a Whisper-based transcription model), for use with [whisper.cpp](https://github.com/ggml-org/whisper.cpp). |
|
|
|
|
|
If you are looking for a program to run this model with, then I would recommend [EasyWhisper UI](https://github.com/mehtabmahir/easy-whisper-ui), as it is user-friendly, has a GUI, and automates a lot of the hard stuff for you. |
|
|
## List of Quants |
|
|
The current quants listed below point to the official ones in the original repository. quants will appear as I finish creating them. Clicking on a link will download the corresponding quant instantly. |
|
|
| Link | Quant | Size | Notes |
|
|
|:-----|:-----|--------:|:------| |
|
|
| [GGML](https://huggingface.co/distil-whisper/distil-small.en/resolve/main/ggml-distil-small.en.fp32.bin) | F32 | 665 MB | Likely overkill. | |
|
|
| [GGML](https://huggingface.co/distil-whisper/distil-small.en/resolve/main/ggml-distil-small.en.bin) | F16 | 336 MB | Performs better than Q8_0 for noisy audio and music. | |
|
|
|
|
|
The F32 quant was taken from [distil-whisper/distil-small.en/ggml-distil-small.en.fp32.bin](https://huggingface.co/distil-whisper/distil-small.en/blob/main/ggml-distil-small.en.fp32.bin), and the F16 quant was taken from [distil-whisper/distil-small.en/ggml-distil-small.en.bin](https://huggingface.co/distil-whisper/distil-small.en/blob/main/ggml-distil-small.en.bin). |
|
|
## Questions you may have |
|
|
### Why do the "K-quants" not work for me? |
|
|
My guess is that your GPU might be too old to recognize them, considering that I have gotten the same error on my GTX 1080. If you would like to run them regardless, you can try switching to CPU inference. |
|
|
### Are the K-quants "S", "M", or "L"? |
|
|
The quantizer I was using was not specific about this, so I do not know about this either. |
|
|
### What program did you use to make these quants? |
|
|
I used [whisper.cpp v1.7.6](https://github.com/ggml-org/whisper.cpp/releases/tag/v1.7.6) on Windows x64, leveraging CUDA 12.4.0. |