Mandarin-first ASR with an LLM mode and a 1.1B efficient twin
An open-source ASR family built to outperform mainstream models on Mandarin, Chinese dialects, and English—including sung lyrics.

What it does
FireRedASR is a family of speech-to-text models built for Mandarin, Chinese dialects, and English. It ships two variants: FireRedASR-LLM, an 8.3B-parameter encoder-adapter-LLM framework that leverages Qwen2-7B-Instruct, and FireRedASR-AED, a 1.1B-parameter attention-based encoder-decoder meant for faster inference and downstream speech-LLM use. The project also claims strong performance on sung lyrics, a niche most ASR releases ignore.
The interesting bit
The README posts benchmark tables showing both variants beating Seed-ASR, Qwen-Audio, SenseVoice-L, and Whisper-Large-v3 on standard Mandarin sets—sometimes by a factor of ten in character error rate. The LLM variant also edges previous SOTA on English LibriSpeech test-clean. It is unusual to see an open-source release explicitly optimize for both boardroom meetings and karaoke.
Key highlights
- Dual architectures: a heavy LLM-backed model for accuracy and a sub-2B AED model for efficiency.
- Claims top public benchmark results on Mandarin (AISHELL-1/2, WenetSpeech) and competitive English numbers.
- Evaluated on Chinese dialects via KeSpeech.
- Explicitly advertises singing lyrics recognition.
- The team has already released
FireRedASR2S, an all-in-one successor adding VAD, language ID, and punctuation modules.
Caveats
FireRedASR-LLMrequires a separateQwen2-7B-Instructdownload and is capped at roughly 30 seconds of audio; behavior beyond that is unknown.FireRedASR-AEDhallucinates after 60 seconds and crashes on positional encoding beyond 200 seconds.- Batch beam search with the LLM variant demands utterances of similar length, or shorter clips may repeat.
Verdict
Worth testing if you need Mandarin or Chinese dialect transcription and have found general-purpose ASR lacking. Skip it if you need reliable long-form transcription out of the box, or if you want the newer all-in-one system—head to FireRedASR2S instead.
Frequently asked
- What is FireRedTeam/FireRedASR?
- An open-source ASR family built to outperform mainstream models on Mandarin, Chinese dialects, and English—including sung lyrics.
- Is FireRedASR open source?
- Yes — FireRedTeam/FireRedASR is open source, released under the Apache-2.0 license.
- What language is FireRedASR written in?
- FireRedTeam/FireRedASR is primarily written in Python.
- How popular is FireRedASR?
- FireRedTeam/FireRedASR has 1.9k stars on GitHub.
- Where can I find FireRedASR?
- FireRedTeam/FireRedASR is on GitHub at https://github.com/FireRedTeam/FireRedASR.