Model reference · open weights
FireRedPunc is an open-weight audio or speech model from FireRedTeam. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Released by | FireRedTeam |
|---|---|
| Type | Audio & music |
| Task | Speech→text |
| Runs with | transformers |
| Released | 2026-02-11 |
| Popularity | 508 downloads / month |
| Licence | Open weights |
About
FireRedASR2S A SOTA Industrial-Grade All-in-One ASR System
[Code] [Paper] [Model🤗] [Model🤖] [Demo]
FireRedASR2S is a state-of-the-art (SOTA), industrial-grade, all-in-one ASR system with ASR, VAD, LID, and Punc modules. All modules achieve SOTA performance:
2S: 2nd-generation FireRedASR, now expanded to an all-in-one ASR System
| Model | Supported Languages & Dialects | Download |
|---|---|---|
| FireRedASR2-LLM | Chinese (Mandarin and 20+ dialects/accents*), English, Code-Switching | 🤗 | 🤖 |
| FireRedASR2-AED | Chinese (Mandarin and 20+ dialects/accents*), English, Code-Switching | 🤗 | 🤖 |
| FireRedVAD | 100+ languages, 20+ Chinese dialects/accents* | 🤗 | 🤖 |
| FireRedLID | 100+ languages, 20+ Chinese dialects/accents* | 🤗 | 🤖 |
| FireRedPunc | Chinese, English | 🤗 | 🤖 |
FireRedASR2 builds upon FireRedASR with improved accuracy, designed to meet diverse requirements in superior performance and optimal efficiency across various applications. It comprises two variants:
$ conda create --name fireredasr2s python=3.10
$ conda activate fireredasr2s
$ git clone https://github.com/FireRedTeam/FireRedASR2S.git
$ cd FireRedASR2S # or fireredasr2s
$ pip install -r requirements.txt
$ export PATH=$PWD/fireredasr2s/:$PATH
$ export PYTHONPATH=$PWD/:$PYTHONPATH
# Download via ModelScope (recommended for users in China)
pip install -U modelscope
modelscope download --model xukaituo/FireRedASR2-AED --local_dir ./pretrained_models/FireRedASR2-AED
modelscope download --model xukaituo/FireRedVAD --local_dir ./pretrained_models/FireRedVAD
modelscope download --model xukaituo/FireRedLID --local_dir ./pretrained_models/FireRedLID
modelscope download --model xukaituo/FireRedPunc --local_dir ./pretrained_models/FireRedPunc
modelscope download --model xukaituo/FireRedASR2-LLM --local_dir ./pretrained_models/FireRedASR2-LLM
# Download via Hugging Face
pip install -U "huggingface_hub[cli]"
huggingface-cli download FireRedTeam/FireRedASR2-AED --local-dir ./pretrained_models/FireRedASR2From the published model card. Full card on the HuggingFace links in the sidebar.
How it works
Using it via the API
Once AxForge deploys fireredpunc for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (fireredpunc below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/audio/transcriptions \ -H "Authorization: Bearer $AXFORGE_API_KEY" \ -F model="fireredpunc" -F file=@audio.mp3
Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.