ASCLLGSDApr 13, 2023

Efficient Sequence Transduction by Jointly Predicting Tokens and Durations

arXiv:2304.06795v263 citationsh-index: 83Has Code
Originality Incremental advance
AI Analysis

This work addresses efficiency and accuracy bottlenecks in sequence transduction for applications like speech recognition and translation, offering incremental improvements over conventional Transducers.

The paper tackles the problem of slow inference in sequence-to-sequence tasks by introducing a Token-and-Duration Transducer (TDT) architecture that jointly predicts tokens and durations, achieving better accuracy and up to 2.82X faster inference in speech recognition, over 1 BLEU gain in speech translation, and up to 1% accuracy improvement in intent classification.

This paper introduces a novel Token-and-Duration Transducer (TDT) architecture for sequence-to-sequence tasks. TDT extends conventional RNN-Transducer architectures by jointly predicting both a token and its duration, i.e. the number of input frames covered by the emitted token. This is achieved by using a joint network with two outputs which are independently normalized to generate distributions over tokens and durations. During inference, TDT models can skip input frames guided by the predicted duration output, which makes them significantly faster than conventional Transducers which process the encoder output frame by frame. TDT models achieve both better accuracy and significantly faster inference than conventional Transducers on different sequence transduction tasks. TDT models for Speech Recognition achieve better accuracy and up to 2.82X faster inference than conventional Transducers. TDT models for Speech Translation achieve an absolute gain of over 1 BLEU on the MUST-C test compared with conventional Transducers, and its inference is 2.27X faster. In Speech Intent Classification and Slot Filling tasks, TDT models improve the intent accuracy by up to over 1% (absolute) over conventional Transducers, while running up to 1.28X faster. Our implementation of the TDT model will be open-sourced with the NeMo (https://github.com/NVIDIA/NeMo) toolkit.

Code Implementations4 repos
Foundations

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

Your Notes