Views
No views yet
FunAudioLLM/Fun-ASR-MLT-Nano-2512 for use with the funasr backend in CrispStrobe/CrispASR. Multilingual variant — same architecture as funasr-nano-GGUF, broader language coverage (~31 languages including Korean, Vietnamese, Indonesian, Thai, Malay, Filipino, Arabic, Hindi, Bulgarian, German, French, Spanish, Italian, Portuguese, Dutch, Polish, Czech, Romanian, Greek, Finnish, Swedish, Turkish, Persian, Danish, Hungarian, Macedonian, Russian).config.yaml and funasr/models/fun_asr_nano/model.py declare a CTC decoder + head, but the published model.pt ships only audio_encoder.* + audio_adaptor.* + llm.* (zero ctc_decoder.* / ctc.ctc_lo.* keys). The LLM-decoder path is therefore the only viable inference path for these weights, and is what this GGUF and the CrispASR runtime implement.| File | Size | Notes |
|---|---|---|
funasr-mlt-nano-2512-f16.gguf | 1.98 GB | F16, full precision reference |
funasr-mlt-nano-2512-q8_0.gguf | 1.27 GB | Q8_0, near-lossless |
funasr-mlt-nano-2512-q4_k.gguf | 897 MB | Q4_K — recommended default |
--punc-model post-processor needed.1git clone https://github.com/CrispStrobe/CrispASR
2cd CrispASR
3cmake -B build-ninja-compile -G Ninja -DCMAKE_BUILD_TYPE=Release
4cmake --build build-ninja-compile --target crispasr
5
6# Auto-download (recommended Q4_K)
7./build-ninja-compile/bin/crispasr -m fun-asr-mlt-nano --auto-download -f samples/jfk.wav
8
9# Or pin a specific file
10hf download cstr/funasr-mlt-nano-GGUF funasr-mlt-nano-2512-q4_k.gguf --local-dir .
11./build-ninja-compile/bin/crispasr -m funasr-mlt-nano-2512-q4_k.gguf -f samples/jfk.wavfunasr Python package): Apache-2.0.If you use this model, please also cite the upstream FunASR work. See the upstream model card for the canonical citation.