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

GitHub
AI Deploy2018

Serves machine learning and deep learning models for cloud, data center, edge and embedded environments. Supports multiple frameworks and backends, dynamic and sequence batching, HTTP/gRPC APIs, Docker deployment and NVIDIA-optimized runtimes.

GitHub

Runs a self-hosted meeting bot and transcription API that joins Google Meet, Teams and Zoom and streams speaker-attributed transcripts in real time. Compiles meetings into a git-backed Markdown workspace and runs sandboxed agents on your infrastructure; Apache-2.0 and air-gap capable.

Hugging Face
AI Audio2026

Generates streaming, low‑latency neural speech for real‑time dialogue by autoregressively producing audio frames as text arrives; joint text–speech training preserves natural prosody. Optimized for vLLM streaming (~50 ms first chunk), supports short‑clip voice cloning and four languages.