AIAny

Deep Speech 2: End-to-End Speech Recognition in English and Mandarin

Bet that one neural net, scaled with HPC, could transcribe both English and Mandarin without hand-built pipelines — reaching human-competitive accuracy by training fast enough to iterate on architecture in days, not weeks.

Introduction

The quiet thesis of this paper is that speech recognition had become an engineering problem, not a modeling one. Baidu's team argued that if you could train a single end-to-end network fast enough, you no longer needed the decades of hand-tuned phonetic features, pronunciation lexicons, and language-specific front-ends — the same architecture could learn English and Mandarin, two languages that share almost nothing acoustically, just by being fed enough labeled audio and enough compute.

Key Findings
  • One model, two unrelated languages. Swapping the training data was nearly enough to retarget the system from English to Mandarin, evidence that the hand-engineered, language-specific pipeline was largely incidental rather than essential.
  • Speed is a research multiplier. HPC techniques delivered a 7x training speedup, turning week-long experiments into day-long ones — the paper's real claim is that this iteration velocity, not any single trick, is what produced the accuracy gains.
  • Batch Normalization and SortaGrad made deep RNNs trainable. Applying BatchNorm to recurrent nets and ordering examples from short to long (curriculum learning) stabilized otherwise fragile deep-RNN training.
  • Deployment was treated as a first-class problem. Batch Dispatch batched incoming requests on GPUs in production, showing end-to-end models could serve users at low latency and reasonable cost, not just win benchmarks.
Who It's For / When to Skip

Great fit if you want a clear case study in how compute scale and systems engineering — not just architecture — drive ASR progress, or if you care about the practical leap from research model to deployed service. Look elsewhere if you want current speech tech: this predates Transformer-based ASR, Conformer, and self-supervised approaches like wav2vec 2.0 and Whisper, which replaced its CTC-trained RNN stack and removed much of its dependence on large labeled corpora.

Information

  • Websitear5iv.labs.arxiv.org
  • OrganizationsBaidu Research
  • AuthorsDario Amodei, Rishita Anubhai, Eric Battenberg, Carl Case, Jared Casper, Bryan Catanzaro, Jingdong Chen, Mike Chrzanowski, Adam Coates, Greg Diamos
  • Published date2015/12/08

More Items

Provides a streaming dual-brain memory for real-time speech agents: an informational left brain for factual retrieval and an affective right brain for persona/emotion, achieving high top-5 accuracy while keeping retrieval latency within VAD budgets (~134 ms).

Supervises audio reasoning by generating per-sample, audio-grounded rubrics that evolve with model rollouts and serve as reinforcement-learning rewards, improving perception and adaptive multi-step reasoning while avoiding reward saturation.

Retrieves short speech segments from MEG recordings with a compact interpretable neural decoder trained against wav2vec 2.0 embeddings, and maps decoder weights to cortical source space to reveal which acoustic and linguistic features drive retrieval.