Listen, Attend and Spell
William ChanNavdeep JaitlyQuoc V. LeOriol Vinyals
Introduces an end-to-end speech recognition framework that directly transcribes audio spectra into character sequences using a pyramidal recurrent encoder and an attention-based decoder, removing the need for pronunciation models and conditional independence assumptions.
The article addresses the challenge of building speech recognition systems that avoid the complexity and separate training of traditional acoustic, pronunciation, and language models, which often rely on hidden Markov models and conditional independence assumptions. These limitations reduce accuracy on varied speech and make handling out-of-vocabulary words or alternative spellings difficult. Recent end-to-end approaches like connectionist temporal classification have improved integration but still fall short on sequence dependencies.
The work evaluates whether a single neural network can directly map audio filter bank features to character sequences without those assumptions or external dictionaries. The Listen, Attend and Spell model uses a pyramidal bidirectional LSTM encoder to compress long audio inputs into higher-level features and an attention-based LSTM decoder to generate characters one at a time, trained jointly on roughly three million Google voice search utterances.
On a held-out test set the model reached 14.1 percent word error rate without a language model and 10.3 percent after rescoring the top beams; the comparable state-of-the-art CLDNN-HMM system achieved 8.0 percent. The network automatically produced multiple valid spellings for the same audio and correctly repeated words, behaviors that are harder for prior end-to-end methods.
These results show that end-to-end attention models can approach conventional performance while eliminating hand-crafted components and pronunciation lexicons. The approach therefore simplifies deployment and may improve robustness on rare or noisy utterances, though it remains a few points behind the hybrid baseline.
Further gains appear possible by adding convolutional layers, location-based attention to handle longer utterances, and stronger language model integration during decoding. The main limitations are higher error rates on very short or very long utterances, greater variance on infrequent words, and evaluation on a single English voice-search domain; readers should treat the reported margins as indicative rather than definitive until broader testing confirms them.
- Paper: Neural Machine Translation by Jointly Learning to Align and Translate, Dzmitry Bahdanau et al. (2015). Introduces the attention-based sequence-to-sequence framework that Listen, Attend and Spell adapts to map acoustic filter bank sequences directly to character transcriptions.
- Paper: Attention-Based Models for Speech Recognition, Jan Chorowski et al. (2015). Provides the foundational demonstration of applying attention mechanisms to speech features, which Listen, Attend and Spell scales to end-to-end character decoding.
- Paper: Sequence to Sequence Learning with Neural Networks, Ilya Sutskever et al. (2014). Establishes the core encoder-decoder LSTM paradigm for variable-length sequence transduction that serves as the baseline architecture for speech recognition in LAS.
- Paper: Towards End-To-End Speech Recognition with Recurrent Neural Networks, Alex Graves et al. (2014). Demonstrates early end-to-end recurrent neural network speech recognition without intermediate phonetic representations, highlighting the sequence-modeling limitations that attention in LAS resolves.
- Paper: Speech Recognition with Deep Recurrent Neural Networks, Alex Graves et al. (2013). Shows the effectiveness of deep bidirectional LSTM networks for acoustic modeling and sequence transcription, foundational to the pyramidal encoder used in LAS.
- Paper: Deep Speech: Scaling up end-to-end speech recognition, Awni Y. Hannun et al. (2014). Presents a scaled-up end-to-end deep learning framework for speech recognition, providing the large-scale pipeline benchmark that LAS improves upon by removing alignment assumptions.
- Paper: Effective Approaches to Attention-based Neural Machine Translation, Minh-Thang Luong et al. (2015). Explores global and local attention architectures in sequence transduction that directly inform the attention scoring and alignment mechanisms used in LAS.
- Paper: Long Short-Term Memory, Sepp Hochreiter et al. (1997). Introduces the Long Short-Term Memory cell architecture that forms the fundamental recurrent building blocks of both the encoder and decoder in LAS.
- Paper: Deep Speech 2: End-to-End Speech Recognition in English and Mandarin, Dario Amodei et al. (2016). Scales end-to-end deep neural speech recognition to multi-language domains with high-performance computing, advancing beyond earlier single-domain neural recognizers.
- Paper: Tacotron: Towards End-to-End Speech Synthesis, Yuxuan Wang et al. (2017). Applies the sequence-to-sequence attention architecture pioneered in speech recognition in reverse to generate speech spectrograms directly from text.
- Paper: Conformer: Convolution-augmented Transformer for Speech Recognition, Anmol Gulati et al. (2020). Combines self-attention with convolutional layers to enhance acoustic modeling efficiency and error rates over earlier recurrent attention models like LAS.
- Paper: Attention Is All You Need, Ashish Vaswani et al. (2017). Replaces recurrent encoder-decoder structures with pure multi-head self-attention, significantly improving training parallelism for sequence-to-sequence tasks.
- Paper: Robust Speech Recognition via Large-Scale Weak Supervision, Alec Radford et al. (2023). Demonstrates modern large-scale weakly supervised sequence-to-sequence speech recognition that generalizes robustly across diverse acoustic domains and languages.
- Paper: wav2vec 2.0: A Framework for Self-Supervised Learning of Speech Representations, Alexei Baevski et al. (2020). Advances speech recognition beyond fully supervised end-to-end models by learning rich acoustic representations through self-supervised pre-training on unlabeled audio.
- Paper: Natural TTS Synthesis by Conditioning Wavenet on MEL Spectrogram Predictions, Jonathan Shen et al. (2017). Builds upon attention-driven spectrogram generation and neural vocoding to produce human-level synthetic speech directly from character inputs.
- Paper: HuBERT: Self-Supervised Speech Representation Learning by Masked Prediction of Hidden Units, Wei-Ning Hsu et al. (2021). Extends self-supervised acoustic representation learning using masked prediction of hidden discrete units for downstream speech recognition.
