Skip to content

Qwen3-ASR-Flash: Multilingual, Noise-Robust Speech Recognition Built on Qwen3-Omni

Qwen3-ASR-Flash is an automatic speech recognition (ASR) service from Alibaba’s Qwen team, built on top of the Qwen3-Omni audio-language backbone and trained on tens of millions of hours of multilingual speech data. It is positioned as a single all-in-one API: 11 supported languages (zh, en, de, it, pt, es, ja, ko, fr, ru, ar) plus multiple Chinese dialects (Sichuanese, Minnan, Wu, Cantonese) and English regional accents, automatic language detection, context-token injection for domain-specific vocabulary, non-speech filtering, and sub-8% WER claims across noisy / musical / low-quality / far-field audio. At the September 2025 announcement, the model was closed and accessible only through Alibaba Cloud Model Studio (Bailian) API and the Hugging Face demo Space; open-weight Qwen3-ASR-0.6B/1.7B + Qwen3-ForcedAligner-0.6B checkpoints followed roughly four months later (Jan 2026 GitHub release). For Luma, this is the upstream component that later supplied the 40M-hour audio-text training labels for Qwen3.5-Omni’s AuT encoder (Qwen3.5-Omni Technical Report §2.2).

  • Built on the Qwen3-Omni audio-language model as the foundation, then post-trained on tens of millions of hours of ASR data — i.e. it is a fine-tuned multimodal-LLM-as-ASR, not a Whisper-style encoder-decoder trained from scratch [blog page].
  • Supports 11 major languages: Chinese, English, French, German, Italian, Spanish, Portuguese, Japanese, Korean, Arabic, Russian [blog page].
  • Supports several Chinese dialects (Sichuanese, Minnan/Hokkien, Wu, Cantonese) and multiple English regional accents (British, American, etc.) [blog page].
  • Automatic language detection runs before transcription — eliminates the need for a manual language-selection step and handles mixed-language audio [blog page].
  • Context-token injection: a user-provided text “context” (keyword list, full document, professional terminology, even unrelated/nonsensical text) biases recognition toward expected vocabulary without retraining — operates as prefix injection rather than fine-tuning [blog page].
  • Intelligent non-speech filtering separates silence, music BGM, and ambient noise from human speech before transcription [blog page].
  • Headline accuracy claim: WER < 8% in challenging settings including singing / rap / background music / noise / low-fidelity audio / far-field recordings [blog page].
  • Access at launch: Alibaba Cloud Model Studio (Bailian) API, plus a hosted Hugging Face demo Space. No open weights at the Sept 2025 announcement; per-call API service only [blog page].

The blog post does not contain an architecture diagram or training recipe — those land later in the Qwen3-ASR GitHub release (Jan 2026) and indirectly in the Qwen3.5-Omni technical report. The Sept 2025 announcement is essentially a product page that anchors three claims:

  1. Backbone: Qwen3-Omni — a decoder-only multimodal LLM that ingests text + audio + image + video as token sequences and emits text (and, in the Talker variant, streaming speech RVQ tokens). Qwen3-ASR-Flash is the ASR-specialized post-training of the Thinker side: same audio encoder + same LLM backbone, fine-tuned to transcribe rather than to converse.
  2. Data scale: “tens of millions of hours” of audio-text pairs across the 11 languages, plus dialect/accent variations. This matches the 40M-hour figure that Qwen3.5-Omni’s AuT encoder later reports as being labeled by Qwen3-ASR — Qwen3-ASR is the labeler for the next-generation Omni’s audio encoder pretraining (Qwen3.5-Omni Technical Report §2.2).
  3. Inference surface: a single API endpoint that auto-detects language, accepts an optional context prefix string, and returns transcribed text. The current limits exposed by the API are ≤10 MB file size and ≤3 min audio duration per request; streaming and speaker diarization are not exposed at launch.

The “ASR-as-prompted-multimodal-LLM” framing is the architectural distinction from Whisper-style ASR — instead of a separately-trained CTC/attention decoder, the decoder is a chat-LM that happens to be conditioned on audio tokens, which is what makes free-form context-token injection trivial.

  • WER: < 8% across complex acoustic scenarios — singing, rap, voice over music, background noise, low-fidelity, far-field. No per-language WER table is given on the announcement page; Alibaba claims it “surpasses leading ASR models on major industry benchmarks” without naming the benchmarks in the blog.
  • Coverage: 11 languages + Chinese-dialect support (Sichuanese, Minnan, Wu, Cantonese) + multi-region English accents.
  • Latency / throughput: not quoted in the announcement (the “Flash” branding implies low latency, but no first-packet-latency numbers are given here; the later open Qwen3-ASR GitHub release reports the 0.6B variant hitting “2000× throughput at concurrency 128” on its readme).
  • Access: Model Studio API + HF Space demo at launch; no open weights.

This is the upstream service whose training labels later feed Qwen3.5-Omni’s audio encoder. The technical report for Qwen3.5-Omni Technical Report specifically states that AuT is “trained from scratch on 40M hours of Qwen3-ASR-labeled audio-text pairs” — meaning Qwen3-ASR-Flash is not just a deployable product but also Alibaba’s internal pipeline for bootstrapping next-generation omni-modal audio understanding from web audio at web scale. The ASR-as-prompted-LLM framing also makes Qwen3-ASR an unusual datapoint next to the Qwen3-TTS Family is Now Open Sourced: Voice Design, Clone, and Generation TTS side of the Qwen3-Omni stack — same backbone family, opposite direction (audio→text vs text→audio), and the same context-prefix trick used in Qwen3-TTS Family is Now Open Sourced: Voice Design, Clone, and Generation‘s VoiceDesign head (text description → voice style) reappears here as text context → vocabulary bias. Sits next to Voxtral TTS — Mistral AI frontier open-weight text-to-speech model (announcement) (Voxtral TTS, open frontier-tier TTS) and Cohere Transcribe — open-source speech-to-text model (announcement) (Cohere Transcribe, open-source STT) as a contemporaneous announcement of a frontier-tier speech model — though Qwen3-ASR-Flash at the Sept 2025 launch was the closed-API end of the spectrum, with the open Qwen3-ASR-0.6B/1.7B weights and the Qwen3-ForcedAligner-0.6B forced-aligner only landing in Jan 2026 (see Qwen3-ASR GitHub).