Views
No views yet
| Model | File | Size | Description |
|---|---|---|---|
| whisper-small | ggml-small.bin | 466 MB | GGML model (tokenizer + weights for CPU fallback) |
| whisper-small | ggml-small-encoder.mxq | 93 MB | Mobilint NPU encoder |
| whisper-small | ggml-small-decoder.mxq | 159 MB | Mobilint NPU decoder |
1# Download all files and run
2whisper-cli-mblt \
3 -m ggml-small.bin \
4 --mxq-encoder ggml-small-encoder.mxq \
5 --mxq-decoder ggml-small-decoder.mxq \
6 -f audio.wav
7
8# Or auto-download from HuggingFace
9whisper-cli-mblt -hf mobilint/whisper-small -f audio.wavggml-small.bin file is also compatible with standard whisper.cpp for CPU-only inference:whisper-cli -m ggml-small.bin -f audio.wav