v1.0.0
astral-sh/uvv1.0.0May 25, 2026by LauraGPT
AI Summary
This is the first official release of SenseVoice, a multilingual speech understanding foundation model featuring ASR for 50+ languages, emotion recognition, audio event detection, and ultra-fast inference.
Key Highlights
- Multilingual ASR with 50+ languages, superior to Whisper on Chinese and Cantonese
- Speech Emotion Recognition for Happy, Sad, Angry, Neutral detection
- Audio Event Detection for background music, applause, laughter, crying, coughing
- Ultra-fast inference at 70ms for 10 seconds of audio (15x faster than Whisper)
- Speaker Diarization integration with FunASR's VAD + SPK pipeline
New Features
- Multilingual ASR (50+ languages)
- Speech Emotion Recognition capabilities
- Audio Event Detection features
- Ultra-fast non-autoregressive inference
- Speaker Diarization support
Full Release Notes
## SenseVoice v1.0.0 The first official release of SenseVoice, a speech foundation model for multilingual speech understanding. ### Highlights - **Multilingual ASR** — 50+ languages, superior to Whisper on Chinese and Cantonese - **Speech Emotion Recognition** — Happy, Sad, Angry, Neutral detection - **Audio Event Detection** — Background music, applause, laughter, crying, coughing - **Ultra-fast inference** — Non-autoregressive, 70ms for 10 seconds of audio (15x faster than Whisper) - **Speaker Diarization** — Works with FunASR's VAD + SPK pipeline for who-said-what ### Quick Start ```python from funasr import AutoModel model = AutoModel(model="iic/SenseVoiceSmall", device="cuda") result = model.generate(input="audio.wav") print(result[0]["text"]) ``` ### Models | Model | Languages | Parameters | Download | |-------|-----------|------------|----------| | SenseVoice-Small | 5 (zh/en/ja/ko/yue) | 234M | [ModelScope](https://modelscope.cn/models/iic/SenseVoiceSmall) · [HuggingFace](https://huggingface.co/FunAudioLLM/SenseVoiceSmall) | ### Links - Paper: [FunAudioLLM](https://arxiv.org/pdf/2407.04051v3) - Demo: [ModelScope](https://modelscope.cn/studios/iic/SenseVoice) · [HuggingFace](https://huggingface.co/spaces/FunAudioLLM/SenseVoice) - Toolkit: [github.com/modelscope/FunASR](https://github.com/modelscope/FunASR) - Website: [www.funasr.com](https://www.funasr.com)