ASAICLSDAug 31, 2021

Efficient conformer: Progressive downsampling and grouped attention for automatic speech recognition

arXiv:2109.01163v2106 citations
Originality Incremental advance
AI Analysis

This work addresses efficiency improvements in speech recognition models for applications requiring faster training and inference, though it is incremental as it builds on the existing Conformer architecture.

The paper tackles the problem of reducing the complexity of the Conformer architecture for automatic speech recognition by introducing progressive downsampling and grouped attention, resulting in a model that achieves competitive word error rates of 3.6%/9.0% without a language model and is 29% faster at inference and 36% faster to train compared to the baseline.

The recently proposed Conformer architecture has shown state-of-the-art performances in Automatic Speech Recognition by combining convolution with attention to model both local and global dependencies. In this paper, we study how to reduce the Conformer architecture complexity with a limited computing budget, leading to a more efficient architecture design that we call Efficient Conformer. We introduce progressive downsampling to the Conformer encoder and propose a novel attention mechanism named grouped attention, allowing us to reduce attention complexity from $O(n^{2}d)$ to $O(n^{2}d / g)$ for sequence length $n$, hidden dimension $d$ and group size parameter $g$. We also experiment the use of strided multi-head self-attention as a global downsampling operation. Our experiments are performed on the LibriSpeech dataset with CTC and RNN-Transducer losses. We show that within the same computing budget, the proposed architecture achieves better performances with faster training and decoding compared to the Conformer. Our 13M parameters CTC model achieves competitive WERs of 3.6%/9.0% without using a language model and 2.7%/6.7% with an external n-gram language model on the test-clean/test-other sets while being 29% faster than our CTC Conformer baseline at inference and 36% faster to train.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes