Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- zh
|
| 5 |
+
- en
|
| 6 |
+
library_name: gguf
|
| 7 |
+
tags:
|
| 8 |
+
- automatic-speech-recognition
|
| 9 |
+
- asr
|
| 10 |
+
- sensevoice
|
| 11 |
+
- funasr
|
| 12 |
+
- llama.cpp
|
| 13 |
+
- ggml
|
| 14 |
+
- cpu
|
| 15 |
+
- chinese
|
| 16 |
+
pipeline_tag: automatic-speech-recognition
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# SenseVoiceSmall · GGUF (FunASR llama.cpp runtime)
|
| 20 |
+
|
| 21 |
+
GGUF build of **[SenseVoiceSmall](https://huggingface.co/FunAudioLLM/SenseVoiceSmall)** (SAN-M encoder + CTC) for the zero-Python, CPU/edge **[FunASR llama.cpp runtime](https://github.com/FunAudioLLM/SenseVoice/tree/main/runtime/llama.cpp)** — multilingual ASR with language / emotion / event tags, **~20× real-time on CPU**.
|
| 22 |
+
|
| 23 |
+
## Files
|
| 24 |
+
| file | size | notes |
|
| 25 |
+
|---|---|---|
|
| 26 |
+
| `sensevoice-small-f16.gguf` | 470 MB | **recommended** (f16 matmul weights) |
|
| 27 |
+
| `sensevoice-small.gguf` | 936 MB | f32 reference |
|
| 28 |
+
|
| 29 |
+
## Usage
|
| 30 |
+
```bash
|
| 31 |
+
# 1. get the VAD too (for long audio): huggingface-cli download FunAudioLLM/fsmn-vad-GGUF
|
| 32 |
+
llama-funasr-sensevoice -m sensevoice-small-f16.gguf -a audio.wav --vad fsmn-vad.gguf > ids.txt
|
| 33 |
+
```
|
| 34 |
+
On CPU (8 threads) this reaches **8.01 % CER** on the 184-clip Mandarin benchmark — vs whisper.cpp 22–31 %. See the [benchmark](https://github.com/FunAudioLLM/SenseVoice/blob/main/runtime/llama.cpp/BENCHMARKS.md).
|
| 35 |
+
|
| 36 |
+
## Links
|
| 37 |
+
- 🧩 Runtime & build: **[SenseVoice · runtime/llama.cpp](https://github.com/FunAudioLLM/SenseVoice/tree/main/runtime/llama.cpp)** — ⭐ **Star [SenseVoice](https://github.com/FunAudioLLM/SenseVoice)!**
|
| 38 |
+
- Source model: [FunAudioLLM/SenseVoiceSmall](https://huggingface.co/FunAudioLLM/SenseVoiceSmall)
|