Pomni commited on
Commit
3755c2c
·
verified ·
1 Parent(s): 7ebd0ee

Create model card

Browse files
Files changed (1) hide show
  1. README.md +47 -3
README.md CHANGED
@@ -1,3 +1,47 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ quantized_by: Pomni
4
+ language:
5
+ - en
6
+ base_model:
7
+ - openai/whisper-medium.en
8
+ pipeline_tag: automatic-speech-recognition
9
+ tags:
10
+ - whisper.cpp
11
+ - ggml
12
+ - whisper
13
+ - audio
14
+ - speech
15
+ - voice
16
+ ---
17
+ # Whisper-Medium.en quants
18
+ This is a repository of **GGML quants for [whisper-medium.en](https://huggingface.co/openai/whisper-medium.en)**, for use with [whisper.cpp](https://github.com/ggml-org/whisper.cpp).
19
+
20
+ 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 will automate a lot of the hard stuff for you.
21
+ ## List of Quants
22
+ Check the *Files and versions* tab for file sizes. Clicking on a link will download the corresponding quant instantly.
23
+ | Link | Quant | Size | Notes
24
+ |:-----|:-----|--------:|:------|
25
+ | [GGML](https://huggingface.co/Pomni/whisper-medium.en-ggml-allquants/resolve/main/ggml-medium.en-f32.bin) | F32 | ? MB | Likely overkill. |
26
+ | [GGML](https://huggingface.co/Pomni/whisper-medium.en-ggml-allquants/resolve/main/ggml-medium.en-f16.bin) | F16 | ? MB | Performs better than Q8_0 for noisy audio and music. |
27
+ | [GGML](https://huggingface.co/Pomni/whisper-medium.en-ggml-allquants/resolve/main/ggml-medium.en-q8_0.bin) | Q8_0 | ? MB | Sweet spot; superficial quality loss at nearly double the speed. |
28
+ | [GGML](https://huggingface.co/Pomni/whisper-medium.en-ggml-allquants/resolve/main/ggml-medium.en-q6_k.bin) | Q6_K | ? MB | |
29
+ | [GGML](https://huggingface.co/Pomni/whisper-medium.en-ggml-allquants/resolve/main/ggml-medium.en-q5_k.bin) | Q5_K | ? MB | |
30
+ | [GGML](https://huggingface.co/Pomni/whisper-medium.en-ggml-allquants/resolve/main/ggml-medium.en-q5_1.bin) | Q5_1 | ? MB | |
31
+ | [GGML](https://huggingface.co/Pomni/whisper-medium.en-ggml-allquants/resolve/main/ggml-medium.en-q5_0.bin) | Q5_0 | ? MB | Last "good" quant; anything below loses quality rapidly. |
32
+ | [GGML](https://huggingface.co/Pomni/whisper-medium.en-ggml-allquants/resolve/main/ggml-medium.en-q4_k.bin) | Q4_K | ? MB | *Might* not have lost too much quality, but I'm not sure. |
33
+ | [GGML](https://huggingface.co/Pomni/whisper-medium.en-ggml-allquants/resolve/main/ggml-medium.en-q4_1.bin) | Q4_1 | ? MB | |
34
+ | [GGML](https://huggingface.co/Pomni/whisper-medium.en-ggml-allquants/resolve/main/ggml-medium.en-q4_0.bin) | Q4_0 | ? MB | |
35
+ | [GGML](https://huggingface.co/Pomni/whisper-medium.en-ggml-allquants/resolve/main/ggml-medium.en-q3_k.bin) | Q3_K | ? MB | |
36
+ | [GGML](https://huggingface.co/Pomni/whisper-medium.en-ggml-allquants/resolve/main/ggml-medium.en-q2_k.bin) | Q2_K | ? MB | Completely non-sensical outputs. |
37
+
38
+ The F16 quant was taken from [ggerganov/whisper.cpp/ggml-medium.en.bin](https://huggingface.co/ggerganov/whisper.cpp/blob/main/ggml-medium.en.bin).
39
+ ## Questions you may have
40
+ ### Why do the "K-quants" not work for me?
41
+ 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.
42
+ ### Are the K-quants "S", "M", or "L"?
43
+ The quantizer I was using was not specific about this, so I do not know about this either.
44
+ ### What program did you use to make these quants?
45
+ 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. For the F32 quant, I converted the original Hugging Face (H5) format model to a GGML using the `models/convert-h5-to-ggml.py` script.
46
+ ### One or multiple of the quants are not working for me.
47
+ [Open a new discussion](https://huggingface.co/Pomni/whisper-medium.en-ggml-allquants/discussions/new) in the community tab about this, and I will look into the issue.