Views
No views yet
1from fireredasr2s import FireRedAsr2System, FireRedAsr2SystemConfig
2
3# Initialize the system with default config
4asr_system_config = FireRedAsr2SystemConfig()
5asr_system = FireRedAsr2System(asr_system_config)
6
7# Process an audio file (16kHz 16-bit mono PCM)
8result = asr_system.process("assets/hello_zh.wav")
9print(result['text'])
10# Output: 你好世界。| Model | Mandarin (Avg CER%) | Dialects (Avg CER%) |
|---|---|---|
| FireRedASR2-LLM | 2.89 | 11.55 |
| FireRedASR2-AED | 3.05 | 11.67 |
| Doubao-ASR | 3.69 | 15.39 |
| Qwen3-ASR | 3.76 | 11.85 |
1@article{xu2026fireredasr2s,
2 title={FireRedASR2S: A State-of-the-Art Industrial-Grade All-in-One Automatic Speech Recognition System},
3 author={Xu, Kaituo and Jia, Yan and Huang, Kai and Chen, Junjie and Li, Wenpeng and Liu, Kun and Xie, Feng-Long and Tang, Xu and Hu, Yao},
4 journal={arXiv preprint arXiv:2603.10420},
5 year={2026}
6}