NetEase Youdao's Confucius4-R2T2 Streams Speech Without Ever Revising Committed Words
NetEase Youdao's open-source R2T2 streams speech to text with 200-600ms latency and never rewrites words it already emitted.
- NetEase Youdao released Confucius4-R2T2, an append-only streaming ASR model built on Qwen3-ASR.
- Latency ranges from 200 to 600 ms with configurable 80 ms to 2 s decoding chunks.
- Emitted words are never revised, unlike Whisper-style pseudo-streaming systems that flicker.
- Uses a Longest Stable Prefix training paradigm to decide when tokens are safe to publish.
- Hits 2.13 WER on LibriSpeech-clean at 160 ms, competitive with offline Qwen3-ASR.
- Ships vLLM backend, WebSocket server, Docker image; weights on HF, Apache 2.0 code.
NetEase Youdao has released Confucius4-R2T2, a streaming speech-recognition model that permanently commits each emitted segment. Many streaming systems revise earlier words as more audio arrives, which causes visible caption changes and can send conflicting text to translation pipelines, voice agents, and other downstream software.
R2T2, short for Real Real-Time Transcription, builds on Qwen3-ASR and supports decoding chunks from 80 milliseconds to 2 seconds. The configurable chunk size lets developers balance responsiveness, compute overhead, and recognition accuracy while preserving append-only output.
How R2T2 commits text
R2T2 decides after each audio chunk which tokens have enough context to publish. Its training data combines stable prefixes, forced time alignment, and token-level audio segmentation. A Longest Stable Prefix learning method then teaches the model to emit confirmed text while retaining uncertain trailing tokens for later decoding.
The unfixed_token_num setting controls how many trailing tokens remain pending inside the decoder. Those tokens may change before publication, but text already returned to the application remains fixed. This gives subsequent decoding steps stable textual context and prevents clients from reconciling revisions.
This story is for Pro members
You've reached the end of the free preview. Upgrade to AlphaSignal Pro to read the full article - and everything else behind the paywall.