Views
No views yet
| File | Quant | Size | Notes |
|---|---|---|---|
ggml-model.bin | F16 | 1.6 GB | Original conversion, full precision |
ggml-model-q5_0.bin | Q5_0 | 574 MB | Good quality/size tradeoff |
ggml-model-q4_k.bin | Q4_K | 452 MB | Smallest, fastest on CPU |
1# Build CrispASR
2git clone https://github.com/CrispStrobe/CrispASR && cd CrispASR
3cmake -S . -B build && cmake --build build -j8
4# Transcribe audio
5./build/bin/crispasr -m ggml-model-q4_k.bin -f audio.wavconvert-h5-to-ggml.py, then quantised with whisper-quantize:1python CrispASR/models/convert-h5-to-ggml.py \
2 ./whisper-large-v3-turbo-arabic-dialectal-v2 \
3 ./whisper \
4 ./output-ggml
5whisper-quantize ggml-model.bin ggml-model-q5_0.bin q5_0
6whisper-quantize ggml-model.bin ggml-model-q4_k.bin q4_k