funasr 1.4.16


pip install funasr

  Latest version

Released: Sep 18, 2026


Meta
Author: Speech Lab of Alibaba Group
Requires Python: >=3.7.0

Classifiers

Programming Language
  • Python
  • Python :: 3
  • Python :: 3.8
  • Python :: 3.9
  • Python :: 3.10
  • Python :: 3.11
  • Python :: 3.12

Development Status
  • 5 - Production/Stable

Intended Audience
  • Science/Research
  • Developers

Operating System
  • POSIX :: Linux
  • MacOS
  • Microsoft :: Windows

License
  • OSI Approved :: MIT License

Topic
  • Scientific/Engineering :: Artificial Intelligence
  • Multimedia :: Sound/Audio :: Speech
  • Software Development :: Libraries :: Python Modules

(简体中文|English|日本語|한국어)

FunASR

Industrial speech recognition toolkit for offline, streaming, and edge deployment.
ASR · VAD · punctuation · speaker pipelines · emotion and audio-event models · OpenAI-compatible serving

PyPI Stars Downloads Docs MCP Toplist

modelscope%2FFunASR | Trendshift

Quick Start · Model selection · Models · Deployment matrix · Deployment hub · Docs · Benchmark · Contribute


Quick Start

Native Transformers

For Fun-ASR-Nano transcription with the Hugging Face API, start with the Transformers 5.17.0 CPU quickstart. No FunASR toolkit or remote Python code is needed.

Space · Notebook · Python / batch examples

FunASR toolkit and pipelines

Open In Colab

No local setup? Open the Colab quickstart to transcribe a public sample or upload your own audio in a browser.

Found FunASR useful? Star the project so more builders can find it.

# CPU-only installs can use the default PyPI wheels.
pip install torch torchaudio
pip install funasr

For GPU quickstarts, install the PyTorch and torchaudio wheels that match your NVIDIA driver from pytorch.org before installing FunASR. After installation, confirm the GPU is visible:

python - <<'PY'
import torch
print(torch.cuda.is_available())
PY

Only use device="cuda" when this prints True; otherwise use device="cpu" or reinstall PyTorch with the correct CUDA wheel.

FunASR toolkit GPU example: Fun-ASR-Nano (Chinese, English, Japanese, and Chinese dialect groups and regional accents; the separate native Transformers CPU path is linked above):

from funasr import AutoModel

model = AutoModel(model="FunAudioLLM/Fun-ASR-Nano-2512", device="cuda")
result = model.generate(input="https://isv-data.oss-cn-hangzhou.aliyuncs.com/ics/MaaS/ASR/test_audio/asr_example_zh.wav")
print(result[0]["text"])

For the separate 31-language checkpoint, use Fun-ASR-MLT-Nano-2512. Language coverage is checkpoint-specific, so Nano and MLT-Nano should be treated as distinct model choices.

For a CPU-first example with five-language ASR plus emotion and audio-event tags, use SenseVoiceSmall. The pipeline below combines it with FSMN-VAD and CAM++ for speaker-aware VAD segments; these are not native speaker outputs of the SenseVoiceSmall checkpoint. See the SenseVoice paper, Hugging Face checkpoint, and GGUF edge checkpoint.

from funasr import AutoModel
from funasr.utils.postprocess_utils import rich_transcription_postprocess

model = AutoModel(model="iic/SenseVoiceSmall", vad_model="fsmn-vad", spk_model="cam++", device="cpu")
result = model.generate(
    input="https://isv-data.oss-cn-hangzhou.aliyuncs.com/ics/MaaS/ASR/test_audio/asr_example_zh.wav",
    batch_size_s=300,
)

# The AutoModel pipeline returns VAD segments with speaker ids and timestamps:
for seg in result[0]["sentence_info"]:
    print(f"[{seg['start']/1000:.1f}s] Speaker {seg['spk']}: {rich_transcription_postprocess(seg['sentence'])}")

This prints each returned segment's start time in seconds, anonymous speaker index, and text with SenseVoice tags removed. Text and segment boundaries depend on the audio and checkpoint; no fixed transcript is asserted here.

CAM++ extracts spk_embedding vectors. AutoModel clusters those embeddings and assigns speaker indices to VAD segments. Indices are local to a recording, not known-person identities. See the SDK contract for the component and result boundaries. Change to device="cuda" only after verifying a compatible GPU environment as described above.

Scale & deploy the flagship

At scale, accelerate Fun-ASR-Nano with vLLM (batch processing):

from funasr.auto.auto_model_vllm import AutoModelVLLM

model = AutoModelVLLM(model="FunAudioLLM/Fun-ASR-Nano-2512", tensor_parallel_size=1)
results = model.generate(["audio1.wav", "audio2.wav"], language="auto")

Deploy as API server: Local SenseVoice CPU recipe · Nano GPU serving and pinned vLLM setup

Use with AI agents: MCP Server for Claude/Cursor · OpenAI API for LangChain/Dify/AutoGen

Use with voice agents: OpenClaw realtime plugin for self-hosted Talk and Voice Call transcription

Why FunASR?

FunASR is a toolkit: choose the task, checkpoint, and runtime separately. Support in one model or adapter does not imply support in every serving backend.

Task Checkpoint or pipeline Runtime entrypoint Important limitation
File transcription with emotion/event tags SenseVoiceSmall Python AutoModel, CPU or GPU Five-language checkpoint; tags do not identify speakers.
LLM-based file transcription Fun-ASR-Nano AutoModel; split-engine AutoModelVLLM for the documented GPU path Base Nano covers zh/en/ja and Chinese dialects/accents; timestamp support depends on checkpoint and path.
Broader multilingual transcription Fun-ASR-MLT-Nano Python AutoModel Separate 31-language checkpoint; do not transfer its coverage to base Nano.
Chunked live transcription Paraformer-zh-streaming Streaming SDK or runtime WebSocket service Use the streaming checkpoint and per-session cache, not an offline checkpoint.
Speaker-aware file transcription SenseVoiceSmall + FSMN-VAD + CAM++ AutoModel with VAD and embedding clustering Anonymous indices within a recording, not enrolled-speaker identification.
Joint text, timestamps, and speakers MOSS-Transcribe-Diarize, third-party OpenMOSS FunASR adapter or upstream backend in the MOSS guide Offline, recording-local anonymous labels; no external VAD/speaker pipeline for its unified path.
Native CPU/edge transcription Fun-ASR-Nano or SenseVoiceSmall GGUF llama.cpp runtime Requires matching converted weights; GGUF is not a Python AutoModel checkpoint.

See the Model Zoo and deployment matrix for checkpoint, interface, and licensing boundaries. Benchmark on your own audio and hardware before choosing a runtime.

Trying FunASR for the first time? Use the Colab quickstart before setting up a local environment. Choosing a first model? Start with the model selection guide. Planning a switch from Whisper or a cloud ASR provider? Use the migration guide and benchmark example to test representative audio, map features, and roll out safely.


Installation

pip install funasr
From source / Requirements
git clone https://github.com/modelscope/FunASR.git && cd FunASR
pip install -e ./

Requirements: Python ≥ 3.8. Install PyTorch + torchaudio first (pytorch.org), then pip install funasr.


Model Zoo

This list includes third-party models. OpenMOSS publishes MOSS-Transcribe-Diarize; FunASR provides an adapter, not ownership of its weights. Its unified path is offline, with anonymous labels scoped to each recording, not realtime or known-person identification. Model licenses are separate from the toolkit's MIT license.

Model Task Languages Params Links
Fun-ASR-Nano ASR zh/en/ja + Chinese dialects and accents 800M ⭐ HF / Transformers · HF / FunASR GGUF
Fun-ASR-MLT-Nano ASR 31 languages 800M ⭐ 🤗
SenseVoiceSmall ASR + emotion + events zh/en/ja/ko/yue 234M ⭐ 🤗 GGUF paper
MOSS-Transcribe-Diarize Third-party OpenMOSS: offline ASR + timestamps + anonymous speakers See official card See official card 🤗 guide
Paraformer-zh ASR + timestamps zh/en 220M ⭐ 🤗
Paraformer-zh-streaming Streaming ASR zh/en 220M ⭐ 🤗
Qwen3-ASR ASR, 52 languages multilingual 1.7B usage
GLM-ASR-Nano ASR, 17 languages multilingual 1.5B usage
Whisper-large-v3 ASR + translation multilingual 1550M usage
Whisper-large-v3-turbo ASR + translation multilingual 809M usage
ct-punc Punctuation zh/en 290M ⭐ 🤗
fsmn-vad VAD zh/en 0.4M ⭐ 🤗
cam++ Speaker embeddings (pipeline component) — 7.2M ⭐ 🤗
emotion2vec+large Emotion recognition — 300M ⭐ 🤗

Usage

Python tutorial · SDK parameters and outputs · Training · Model registration

from funasr import AutoModel

# Chinese production (VAD + ASR + punctuation + speaker)
model = AutoModel(model="paraformer-zh", vad_model="fsmn-vad", punc_model="ct-punc", spk_model="cam++", device="cuda")
result = model.generate(input="https://isv-data.oss-cn-hangzhou.aliyuncs.com/ics/MaaS/ASR/test_audio/asr_example_zh.wav", hotword="关键词 20")

# Optional Silero VAD (install first: python -m pip install "funasr[silero]")
model = AutoModel(
    model="paraformer-zh", vad_model="silero-vad", device="cuda",
    vad_kwargs={"silero_threshold": 0.5, "silero_min_silence_duration_ms": 100},
)
result = model.generate(input="audio.wav")

# Streaming real-time (feed audio chunk by chunk)
import soundfile as sf
model = AutoModel(model="paraformer-zh-streaming", device="cuda")
audio, sr = sf.read("speech.wav", dtype="float32")   # 16 kHz mono
chunk_size = [0, 10, 5]                               # 600 ms chunks
chunk_stride = chunk_size[1] * 960
cache = {}
n_chunks = (len(audio) - 1) // chunk_stride + 1
for i in range(n_chunks):
    chunk = audio[i * chunk_stride : (i + 1) * chunk_stride]
    res = model.generate(input=chunk, cache=cache, is_final=(i == n_chunks - 1),
                         chunk_size=chunk_size, encoder_chunk_look_back=4, decoder_chunk_look_back=1)
    if res[0]["text"]:
        print(res[0]["text"], end="", flush=True)

# Emotion recognition
model = AutoModel(model="emotion2vec_plus_large", device="cuda")
result = model.generate(input="audio.wav", granularity="utterance")

CLI (Agent-Friendly)

# Transcribe audio (simplest)
funasr audio.wav

# JSON output (for AI agents)
funasr audio.wav --output-format json

# SRT subtitles
funasr audio.wav --output-format srt --output-dir ./subs

# Speaker diarization + timestamps
funasr audio.wav --spk --timestamps -f json

# Choose model and language
funasr audio.wav --model paraformer --language zh

# Batch transcribe
funasr *.wav --output-format srt --output-dir ./output

Available models: sensevoice (default), paraformer, paraformer-en, fun-asr-nano


Deploy

Start a local SenseVoice CPU service from a fresh directory in a POSIX shell with Python 3.11. This installs the PyPI release into a separate environment, not this source checkout. Keep the unauthenticated service on loopback; use the security guide before exposing it to other clients.

python3.11 -m venv .venv-funasr-http
. .venv-funasr-http/bin/activate
python -m pip install torch torchaudio
python -m pip install funasr fastapi uvicorn python-multipart
python -m pip check
funasr-server --host 127.0.0.1 --port 8000 --model sensevoice --device cpu

Wait for model download and server startup. In a second terminal, use the same directory and curl 7.76+ to download a public Chinese audio sample and transcribe it. The request uses the preloaded model; no fixed transcript or speaker labels are promised.

curl --fail --location https://isv-data.oss-cn-hangzhou.aliyuncs.com/ics/MaaS/ASR/test_audio/BAC009S0764W0121.wav -o sample.wav && \
curl --fail-with-body http://127.0.0.1:8000/v1/audio/transcriptions \
  -F file=@sample.wav \
  -F model=sensevoice \
  -F response_format=verbose_json

For offline joint ASR and anonymous speaker labels (moss-transcribe-diarize), prepare the separate environment in the MOSS service, Docker, Kubernetes, vLLM, SGLang, LocalAI, and FunClip guide →. It is an alternative service, not another command in the CPU environment. Stop the CPU service before reusing port 8000. For Nano GPU serving, follow the pinned split-engine guide and inspect the actual backend logs; selecting a model does not by itself prove that vLLM was loaded.

# Docker streaming service
docker pull registry.cn-hangzhou.aliyuncs.com/funasr_repo/funasr:funasr-runtime-sdk-online-cpu-0.1.12

CPU / Edge — llama.cpp / GGUF (no GPU, no Python)

Run SenseVoice / Paraformer / Fun-ASR-Nano as a single self-contained binary on CPU and edge devices — this is to FunASR what whisper.cpp is to Whisper, but with ~3× lower CER than whisper.cpp on Chinese. Built-in FSMN-VAD, no Python at runtime.

# Linux / macOS: run from the extracted release directory
bash download-funasr-model.sh sensevoice ./gguf        # or: paraformer | nano
./llama-funasr-sensevoice -m ./gguf/sensevoice-small-q8.gguf --vad ./gguf/fsmn-vad.gguf -a audio.wav
# → 欢迎大家来体验达摩院推出的语音识别模型
# Windows PowerShell: run from the extracted archive root (with the `hf` CLI installed)
hf download FunAudioLLM/SenseVoiceSmall-GGUF sensevoice-small-q8.gguf --local-dir .\gguf
hf download FunAudioLLM/fsmn-vad-GGUF fsmn-vad.gguf --local-dir .\gguf
.\llama-funasr-sensevoice.exe -m .\gguf\sensevoice-small-q8.gguf --vad .\gguf\fsmn-vad.gguf -a audio.wav
# Use the windows-x64-vulkan package with a current AMD, Intel, or NVIDIA Vulkan driver:
.\llama-funasr-sensevoice.exe -m .\gguf\sensevoice-small-q8.gguf --vad .\gguf\fsmn-vad.gguf -a audio.wav --backend vulkan
# Use the windows-x64-cuda package on RTX 30-class GPUs:
.\llama-funasr-sensevoice.exe -m .\gguf\sensevoice-small-q8.gguf --vad .\gguf\fsmn-vad.gguf -a audio.wav --backend cuda

Use funasr-llamacpp-linux-x64-vulkan.tar.gz on Linux GPU systems with a working Vulkan driver/ICD:

./llama-funasr-sensevoice -m ./gguf/sensevoice-small-q8.gguf --vad ./gguf/fsmn-vad.gguf -a audio.wav --backend vulkan

The Windows Vulkan ZIP uses the system Vulkan loader supplied by the GPU driver; installing the Vulkan SDK is only necessary when building from source. Both Vulkan packages currently accelerate SenseVoiceSmall.

Tagged releases provide two Windows CUDA packages. The standard windows-x64-cuda ZIP targets CUDA architecture 86, while windows-x64-cuda-blackwell targets architecture 120 (sm_120) for RTX 50 / Blackwell GPUs. Both ZIPs bundle the required cuBLAS DLLs and use the static MSVC runtime, so users need a compatible NVIDIA driver but not a separate CUDA Toolkit installation. CI verifies the architecture and package boundary; it does not prove inference on physical Blackwell hardware.

Prebuilt binaries: Releases · v0.2.6 · Linux Vulkan tarball · Windows Vulkan zip · Windows CUDA zip · Windows Blackwell CUDA zip · Download & quickstart: funasr.com/deploy/llama-cpp · GGUF models: Hugging Face · Docs & benchmarks: runtime/llama.cpp/

OpenAI API example → · Gradio demo → · Client recipes → · JavaScript/TypeScript recipes → · Kubernetes template → · Workflow recipes → · Postman collection → · OpenAPI spec → · Security guide → · Deployment matrix → · Deployment docs → · Agent integration →


Benchmark

The historical benchmark report and split-engine measurements retain their original results. They are separate records, not universal speed rankings or production capacity guarantees.

Use the RTFx and reproducibility notes to compare checkpoint/revision, audio set, hardware, batching, warmup, timing scope, and CER/WER. Offline throughput is not streaming latency. The migration benchmark example helps measure your own recordings with the same evaluation scope.


What's new

  • MOSS-Transcribe-Diarize brings long-form ASR, timestamps, and anonymous speaker labels to FunASR services, Docker, Kubernetes, vLLM/SGLang workflows, and FunClip. Deploy MOSS ->
  • FunASR 1.4.16 preserves explicit VAD, punctuation, and speaker-model device placement across inference calls, and adds tested native Transformers adoption guides. Install with python -m pip install -U "funasr==1.4.16". Release and verification scope ->
  • Native Transformers: Released 5.17.0 supports Fun-ASR-Nano with the official -hf checkpoint, CPU examples and a notebook. Get started ->

See GitHub Releases for the complete changelog and downloadable assets.


Community

Start with troubleshooting before reporting a problem. Include your exact model, runtime, environment and a minimal reproduction.

📖 Documentation 🐛 Issues
💬 Discussions 🤗 HuggingFace
🤝 Contributing 🌐 funasr.com
🗺️ Repository roles & roadmap 📈 Growth plan
🧩 Community projects 💡 Use-case showcase

Star History

Star History Chart

License

Citations

@inproceedings{gao2023funasr,
  author={Zhifu Gao and others},
  title={FunASR: A Fundamental End-to-End Speech Recognition Toolkit},
  booktitle={INTERSPEECH},
  year={2023}
}
1.4.16 Sep 18, 2026
1.4.15 Sep 09, 2026
1.4.14 Sep 03, 2026
1.4.13 Sep 02, 2026
1.4.12 Sep 01, 2026
1.4.11 Aug 30, 2026
1.4.10 Aug 30, 2026
1.4.9 Aug 30, 2026
1.4.8 Aug 30, 2026
1.4.7 Aug 29, 2026
1.4.6 Aug 29, 2026
1.4.5 Aug 27, 2026
1.4.4 Aug 26, 2026
1.4.3 Aug 21, 2026
1.4.2 Aug 14, 2026
1.4.1 Aug 04, 2026
1.4.0 Jul 31, 2026
1.3.30 Jul 27, 2026
1.3.29 Jul 24, 2026
1.3.28 Jul 24, 2026
1.3.27 Jul 23, 2026
1.3.26 Jul 22, 2026
1.3.25 Jul 22, 2026
1.3.24 Jul 22, 2026
1.3.23 Jul 22, 2026
1.3.22 Jul 19, 2026
1.3.21 Jul 19, 2026
1.3.20 Jul 19, 2026
1.3.19 Jul 19, 2026
1.3.18 Jul 19, 2026
1.3.17 Jul 18, 2026
1.3.16 Jul 17, 2026
1.3.15 Jul 17, 2026
1.3.14 Jun 23, 2026
1.3.13 Jun 22, 2026
1.3.12 Jun 21, 2026
1.3.11 Jun 20, 2026
1.3.10 Jun 17, 2026
1.3.9 May 29, 2026
1.3.8 May 29, 2026
1.3.7 May 27, 2026
1.3.6 May 27, 2026
1.3.5 May 26, 2026
1.3.4 May 26, 2026
1.3.3 May 23, 2026
1.3.2 May 23, 2026
1.3.1 Jan 26, 2026
1.3.0 Jan 04, 2026
1.2.9 Dec 15, 2025
1.2.8 Dec 15, 2025
1.2.7 Aug 15, 2025
1.2.6 Mar 11, 2025
1.2.4 Feb 13, 2025
1.2.3 Jan 24, 2025
1.2.2 Dec 25, 2024
1.2.0 Dec 12, 2024
1.1.18 Dec 12, 2024
1.1.17 Dec 11, 2024
1.1.16 Nov 28, 2024
1.1.14 Nov 01, 2024
1.1.13 Oct 29, 2024
1.1.12 Oct 12, 2024
1.1.11 Oct 10, 2024
1.1.9 Sep 30, 2024
1.1.8 Sep 25, 2024
1.1.6 Aug 20, 2024
1.1.5 Aug 12, 2024
1.1.4 Jul 26, 2024
1.1.3 Jul 22, 2024
1.1.2 Jul 16, 2024
1.1.1 Jul 16, 2024
1.1.0 Jul 05, 2024
1.0.30 Jul 01, 2024
1.0.29 Jul 01, 2024
1.0.28 Jun 20, 2024
1.0.27 May 15, 2024
1.0.26 May 08, 2024
1.0.25 Apr 23, 2024
1.0.24 Apr 18, 2024
1.0.23 Apr 10, 2024
1.0.22 Apr 08, 2024
1.0.21 Apr 08, 2024
1.0.20 Apr 02, 2024
1.0.19 Mar 25, 2024
1.0.18 Mar 24, 2024
1.0.17 Mar 15, 2024
1.0.16 Mar 14, 2024
1.0.15 Mar 13, 2024
1.0.14 Mar 05, 2024
1.0.12 Mar 04, 2024
1.0.11 Feb 29, 2024
1.0.10 Feb 22, 2024
1.0.9 Feb 21, 2024
1.0.8 Feb 21, 2024
1.0.7 Feb 21, 2024
1.0.6 Feb 19, 2024
1.0.5 Jan 31, 2024
1.0.4 Jan 30, 2024
1.0.3 Jan 25, 2024
1.0.2 Jan 24, 2024
1.0.0 Jan 22, 2024
0.8.8 Jan 13, 2024
0.8.7 Nov 28, 2023
0.8.6 Nov 27, 2023
0.8.4 Nov 09, 2023
0.8.3 Nov 08, 2023
0.8.2 Oct 25, 2023
0.8.1 Oct 19, 2023
0.8.0 Oct 10, 2023
0.7.9 Oct 10, 2023
0.7.8 Sep 18, 2023
0.7.7 Sep 14, 2023
0.7.6 Sep 07, 2023
0.7.5 Aug 28, 2023
0.7.4 Aug 15, 2023
0.7.3 Aug 11, 2023
0.7.2 Aug 08, 2023
0.7.1 Jul 24, 2023
0.7.0 Jul 14, 2023
0.6.9 Jul 06, 2023
0.6.7 Jun 29, 2023
0.6.6 Jun 28, 2023
0.6.5 Jun 26, 2023
0.6.4 Jun 26, 2023
0.6.3 Jun 26, 2023
0.6.2 Jun 19, 2023
0.6.1 Jun 13, 2023
0.6.0 Jun 12, 2023
0.5.8 Jun 06, 2023
0.5.6 May 24, 2023
0.5.5 May 22, 2023
0.5.4 May 19, 2023
0.5.3 May 18, 2023
0.5.2 May 18, 2023
0.5.1 May 11, 2023
0.5.0 May 11, 2023
0.4.8 May 08, 2023
0.4.7 May 08, 2023
0.4.6 May 07, 2023
0.4.4 Apr 27, 2023
0.4.3 Apr 21, 2023
0.4.2 Apr 21, 2023
0.4.1 Apr 14, 2023
0.3.1 Mar 24, 2023

Wheel compatibility matrix

Platform Python 3
any

Files in release

Extras:
Dependencies:
scipy (>=1.4.1)
librosa
soundfile (>=0.12.1)
numpy
PyYAML (>=5.1.2)
tqdm
requests
regex
websockets (>=10.4)
omegaconf (>=2.0)
hydra-core (>=1.3.2)
modelscope
huggingface_hub
safetensors
transformers
tiktoken
sentencepiece
kaldiio (>=2.17.0)
jieba
jamo
jaconv
umap_learn
rapidfuzz (>=3.0.0)
torch_complex
tensorboardX
oss2