File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ Requirements: Python ≥ 3.8. Install PyTorch + torchaudio first ([pytorch.org](
144144
145145| Model | Task | Languages | Params | Links |
146146| -------| ------| -----------| --------| -------|
147- | ** Fun-ASR-Nano** | ASR | zh/en/ja + Chinese dialects and accents | 800M | [ ⭐] ( https://www.modelscope.cn/models/FunAudioLLM/Fun-ASR-Nano-2512 ) [ 🤗] ( https://huggingface.co/FunAudioLLM/Fun-ASR-Nano-2512 ) |
147+ | ** Fun-ASR-Nano** | ASR | zh/en/ja + Chinese dialects and accents | 800M | [ ⭐] ( https://www.modelscope.cn/models/FunAudioLLM/Fun-ASR-Nano-2512 ) [ 🤗] ( https://huggingface.co/FunAudioLLM/Fun-ASR-Nano-2512 ) [ GGUF ] ( https://huggingface.co/FunAudioLLM/Fun-ASR-Nano-GGUF ) |
148148| ** Fun-ASR-MLT-Nano** | ASR | 31 languages | 800M | [ ⭐] ( https://www.modelscope.cn/models/FunAudioLLM/Fun-ASR-MLT-Nano-2512 ) [ 🤗] ( https://huggingface.co/FunAudioLLM/Fun-ASR-MLT-Nano-2512 ) |
149149| ** SenseVoiceSmall** | ASR + emotion + events | zh/en/ja/ko/yue | 234M | [ ⭐] ( https://www.modelscope.cn/models/iic/SenseVoiceSmall ) [ 🤗] ( https://huggingface.co/FunAudioLLM/SenseVoiceSmall ) [ GGUF] ( https://huggingface.co/FunAudioLLM/SenseVoiceSmall-GGUF ) [ paper] ( https://arxiv.org/abs/2407.04051 ) |
150150| ** Paraformer-zh** | ASR + timestamps | zh/en | 220M | [ ⭐] ( https://www.modelscope.cn/models/iic/speech_paraformer-large-vad-punc_asr_nat-zh-cn-16k-common-vocab8404-pytorch/summary ) [ 🤗] ( https://huggingface.co/funasr/paraformer-zh ) |
Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ pip install -e ./
185185
186186| 模型 | 任务 | 语言 | 参数量 | 链接 |
187187| ------| ------| ------| --------| ------|
188- | ** Fun-ASR-Nano** | 识别 | 中/英/日 + 中文方言 | 800M | [ ⭐] ( https://www.modelscope.cn/models/FunAudioLLM/Fun-ASR-Nano-2512 ) [ 🤗] ( https://huggingface.co/FunAudioLLM/Fun-ASR-Nano-2512 ) |
188+ | ** Fun-ASR-Nano** | 识别 | 中/英/日 + 中文方言 | 800M | [ ⭐] ( https://www.modelscope.cn/models/FunAudioLLM/Fun-ASR-Nano-2512 ) [ 🤗] ( https://huggingface.co/FunAudioLLM/Fun-ASR-Nano-2512 ) [ GGUF ] ( https://huggingface.co/FunAudioLLM/Fun-ASR-Nano-GGUF ) |
189189| ** Fun-ASR-MLT-Nano** | 识别 | 31 种语言 | 800M | [ ⭐] ( https://www.modelscope.cn/models/FunAudioLLM/Fun-ASR-MLT-Nano-2512 ) [ 🤗] ( https://huggingface.co/FunAudioLLM/Fun-ASR-MLT-Nano-2512 ) |
190190| ** SenseVoiceSmall** | 识别 + 情感 + 事件 | 中/英/日/韩/粤 | 234M | [ ⭐] ( https://www.modelscope.cn/models/iic/SenseVoiceSmall ) [ 🤗] ( https://huggingface.co/FunAudioLLM/SenseVoiceSmall ) [ GGUF] ( https://huggingface.co/FunAudioLLM/SenseVoiceSmall-GGUF ) [ 论文] ( https://arxiv.org/abs/2407.04051 ) |
191191| ** Paraformer-zh** | 识别 + 时间戳 | 中/英 | 220M | [ ⭐] ( https://www.modelscope.cn/models/iic/speech_paraformer-large-vad-punc_asr_nat-zh-cn-16k-common-vocab8404-pytorch/summary ) [ 🤗] ( https://huggingface.co/funasr/paraformer-zh ) |
Original file line number Diff line number Diff line change @@ -106,6 +106,18 @@ def test_chinese_readme_model_table_uses_current_modelscope_entries():
106106 assert marker not in text
107107
108108
109+ def test_readme_model_tables_surface_public_gguf_entries ():
110+ readmes = [
111+ (ROOT / "README.md" ).read_text (),
112+ (ROOT / "README_zh.md" ).read_text (),
113+ ]
114+
115+ for text in readmes :
116+ assert "https://huggingface.co/FunAudioLLM/Fun-ASR-Nano-GGUF" in text
117+ assert "https://huggingface.co/FunAudioLLM/SenseVoiceSmall-GGUF" in text
118+ assert "https://huggingface.co/FunAudioLLM/Fun-ASR-MLT-Nano-GGUF" not in text
119+
120+
109121def test_realtime_demo_documents_partial_and_hotword_boundaries ():
110122 text = (
111123 ROOT
You can’t perform that action at this time.
0 commit comments