AIAny
AI Audio2022
Icon for item

FunASR

Bundles ASR, voice activity detection, punctuation, and speaker diarization into one pipeline, with pretrained models like Paraformer and SenseVoice. SenseVoice runs ~17x realtime on CPU; also ships streaming ASR and an OpenAI-compatible API.

Introduction

Whisper trained everyone to reach for a single, giant, do-everything model. FunASR bets the opposite way: ship a toolkit of smaller, purpose-built components — a VAD model, an ASR model, a punctuation model, a diarization model — that you compose into one pipeline. That modularity is the whole point, and it is why a 234M-parameter SenseVoice can outrun a much larger general model on Mandarin while still running on a plain CPU.

What Sets It Apart
  • Paraformer is non-autoregressive: it decodes a whole utterance in parallel rather than token-by-token, so latency stays flat as audio grows — the source of the headline realtime multiples.
  • The models were trained on Alibaba's industrial corpora (tens of thousands of hours of annotated Mandarin), so accuracy on Chinese accents and telephony-quality audio tends to beat Western-trained baselines.
  • You pick the model that matches the job rather than accepting one compromise: SenseVoice for emotion plus multilingual on CPU, Paraformer for timestamped Mandarin, larger LLM-based models for 30+ languages.
  • Production plumbing is built in — streaming over WebSocket and an OpenAI-compatible endpoint — so swapping it in for a hosted API is closer to a URL change than a rewrite.
Who It's For

Great fit if you process Mandarin or mixed Chinese-English audio at scale, need word-level timestamps or speaker labels, or want CPU-only deployment without a GPU bill. Look elsewhere if your audio is mostly English, where Whisper's ecosystem and tooling run deeper, or if you want one drop-in model and would rather not reason about which components to chain. Documentation skews toward Chinese, so non-Chinese readers should expect some translation friction.

Information

  • Websitegithub.com
  • OrganizationsAlibaba DAMO Academy, ModelScope
  • AuthorsAlibaba DAMO Academy, Northwestern Polytechnical University (NWPU), China Telecom, RapidAI, AIHealthX, XVERSE, Community contributors
  • Published date2022/11/24

More Items

Hugging Face
AI Audio2026

Generates low-latency, instruction-driven English and Chinese speech for voice cloning, voice design, and directed performances; supports real-time streaming, reference-free voice creation, and reference-guided cloning. Open-weight PyTorch model released under a research/non-commercial license with GPU recommendations.

Hugging Face
AI Audio2026

Zero-shot multilingual text-to-speech checkpoint for speech generation and voice cloning with a compact footprint. Features an ~170M-parameter main model plus a bundled ~120M-parameter codec decoder, with primary support for Chinese and English; other languages show more variable quality and long/noisy references reduce fidelity.

GitHub
AI Deploy2026

Provides reusable Docker compose files, scripts and benchmarked configs to serve modern LLMs (Qwen, Gemma, etc.) on 1–2 NVIDIA RTX 3090/4090/5090 GPUs. Multi-engine (vLLM, llama.cpp, ik_llama), measured TPS/context tradeoffs, and validated single/dual‑GPU recipes.