Advantages and Performance of the Transformer Model
The Transformer offers several computational and performance advantages over recurrent architectures:
- Constant sequential operations: A self-attention layer connects all positions with a constant number of sequentially executed operations, whereas a recurrent neural network (RNN) requires sequential operations. In terms of computational complexity, self-attention layers are faster than recurrent layers whenever the sequence length is smaller than the representation dimensionality.
- Faster training: For translation tasks, the Transformer can be trained significantly faster than architectures based on recurrent or convolutional layers.
- State-of-the-art translation results: On both the WMT 2014 English-to-German and WMT 2014 English-to-French translation tasks, the Transformer achieved a new state-of-the-art. On the English-to-German task, the best model outperformed even all previously reported ensembles.
0
1
Contributors are:
Who are from:
Tags
Data Science
Prep Sessions
Foundational Deep Learning Architectures: Transformers and Residual Networks @ University of Michigan - Ann Arbor
Ch.2 Transformer Training and Evaluation - Foundational Deep Learning Architectures: Transformers and Residual Networks @ University of Michigan - Ann Arbor
Machine Translation and Constituency Parsing Evaluation - Foundational Deep Learning Architectures: Transformers and Residual Networks @ University of Michigan - Ann Arbor
Related
What problem is this paper trying to solve?
Transformer model
Training Data
Advantages and Performance of the Transformer Model
Regularization Techniques in the Transformer Model
Attention Functions Used in the Transformer Model
Architectural Variations and Ablation Analysis
Generalization to English Constituency Parsing
Advantages and Performance of the Transformer Model
Learn After
Match each architectural property or condition to its corresponding computational characteristic in sequence processing.
Based on the performance evaluation of the Transformer, explain how its training speed compares to recurrent or convolutional architectures for translation tasks, and describe the achievement of the best Transformer model relative to prior ensemble models on the WMT 2014 English-to-German task.