v1.0.0

AIPentest/CyberStrikeAIv1.0.0May 25, 2026by LauraGPT

AI Summary

This release marks the official debut of SenseVoice, a multilingual speech foundation model designed for high-performance speech understanding. It introduces capabilities ranging from emotion recognition to ultra-fast inference.

Key Highlights

  • Multilingual ASR supporting 50+ languages with superior performance on Chinese and Cantonese
  • Speech Emotion Recognition (Happy, Sad, Angry, Neutral)
  • Audio Event Detection (music, applause, laughter, etc.)
  • Ultra-fast inference at 70ms for 10 seconds of audio
  • Speaker Diarization integration

New Features

  • SenseVoice model integration
  • Multilingual speech understanding
  • Speaker diarization capabilities

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)