The transformer is a
deep learning
Deep learning is a subset of machine learning that focuses on utilizing multilayered neural networks to perform tasks such as classification, regression, and representation learning. The field takes inspiration from biological neuroscience a ...
architecture based on the multi-head
attention
Attention or focus, is the concentration of awareness on some phenomenon to the exclusion of other stimuli. It is the selective concentration on discrete information, either subjectively or objectively. William James (1890) wrote that "Atte ...
mechanism, in which text is converted to numerical representations called
tokens, and each token is converted into a vector via lookup from a
word embedding
In natural language processing, a word embedding is a representation of a word. The embedding is used in text analysis. Typically, the representation is a real-valued vector that encodes the meaning of the word in such a way that the words that ...
table.
At each layer, each
token is then
contextualized within the scope of the
context window with other (unmasked) tokens via a parallel multi-head attention mechanism, allowing the signal for key tokens to be amplified and less important tokens to be diminished.
Transformers have the advantage of having no recurrent units, therefore requiring less training time than earlier
recurrent neural architectures (RNNs) such as
long short-term memory (LSTM).
Later variations have been widely adopted for training
large language models (LLM) on large (language)
datasets.
The modern version of the transformer was proposed in the 2017 paper "
Attention Is All You Need" by researchers at
Google
Google LLC (, ) is an American multinational corporation and technology company focusing on online advertising, search engine technology, cloud computing, computer software, quantum computing, e-commerce, consumer electronics, and artificial ...
.
[ Transformers were first developed as an improvement over previous architectures for machine translation,] but have found many applications since. They are used in large-scale natural language processing
Natural language processing (NLP) is a subfield of computer science and especially artificial intelligence. It is primarily concerned with providing computers with the ability to process data encoded in natural language and is thus closely related ...
, computer vision
Computer vision tasks include methods for image sensor, acquiring, Image processing, processing, Image analysis, analyzing, and understanding digital images, and extraction of high-dimensional data from the real world in order to produce numerical ...
( vision transformers), reinforcement learning
Reinforcement learning (RL) is an interdisciplinary area of machine learning and optimal control concerned with how an intelligent agent should take actions in a dynamic environment in order to maximize a reward signal. Reinforcement learnin ...
,[ audio,] multimodal learning, robotics
Robotics is the interdisciplinary study and practice of the design, construction, operation, and use of robots.
Within mechanical engineering, robotics is the design and construction of the physical structures of robots, while in computer s ...
, and even playing chess
Chess is a board game for two players. It is an abstract strategy game that involves Perfect information, no hidden information and no elements of game of chance, chance. It is played on a square chessboard, board consisting of 64 squares arran ...
. It has also led to the development of pre-trained systems, such as generative pre-trained transformers (GPTs) and BERT (bidirectional encoder representations from transformers).
History
Predecessors
For many years, sequence modelling and generation was done by using plain recurrent neural network
Recurrent neural networks (RNNs) are a class of artificial neural networks designed for processing sequential data, such as text, speech, and time series, where the order of elements is important. Unlike feedforward neural networks, which proces ...
s (RNNs). A well-cited early example was the Elman network (1990). In theory, the information from one token can propagate arbitrarily far down the sequence, but in practice the vanishing-gradient problem leaves the model's state at the end of a long sentence without precise, extractable information about preceding tokens.
A key breakthrough was LSTM
Long short-term memory (LSTM) is a type of recurrent neural network (RNN) aimed at mitigating the vanishing gradient problem commonly encountered by traditional RNNs. Its relative insensitivity to gap length is its advantage over other RNNs, hi ...
(1995), a RNN which used various innovations to overcome the vanishing gradient problem, allowing efficient learning of long-sequence modelling. One key innovation was the use of an attention mechanism which used neurons that multiply the outputs of other neurons, so-called ''multiplicative units''. Neural networks using multiplicative units were later called ''sigma-pi networks'' or '' higher-order networks''. LSTM became the standard architecture for long sequence modelling until the 2017 publication of Transformers.
However, LSTM still used sequential processing, like most other RNNs. Specifically, RNNs operate one token at a time from first to last; they cannot operate in parallel over all tokens in a sequence.
Modern Transformers overcome this problem, but unlike RNNs, they require computation time that is quadratic in the size of the context window. The linearly scaling fast weight controller (1992) learns to compute a weight matrix for further processing depending on the input. One of its two networks has "fast weights" or "dynamic links" (1981).[Christoph von der Malsburg: The correlation theory of brain function. Internal Report 81-2, MPI Biophysical Chemistry, 1981. http://cogprints.org/1380/1/vdM_correlation.pdf See Reprint in Models of Neural Networks II, chapter 2, pages 95–119. Springer, Berlin, 1994.][Jerome A. Feldman, "Dynamic connections in neural networks," Biological Cybernetics, vol. 46, no. 1, pp. 27–39, Dec. 1982.] A slow neural network learns by gradient descent to generate keys and values for computing the weight changes of the fast neural network which computes answers to queries.[ This was later shown to be equivalent to the unnormalized linear Transformer.]
Attention with seq2seq
The idea of encoder-decoder sequence transduction had been developed in the early 2010s; commonly cited as the originators that produced seq2seq are two concurrently published papers from 2014.[ irst version posted to arXiv on 10 Sep 2014/ref>
A 380M-parameter model for machine translation uses two long short-term memories (LSTM).][ Its architecture consists of two parts. The ''encoder'' is an LSTM that takes in a sequence of tokens and turns it into a vector. The ''decoder'' is another LSTM that converts the vector into a sequence of tokens. Similarly, another 130M-parameter model used gated recurrent units (GRU) instead of LSTM.][ Later research showed that GRUs are neither better nor worse than LSTMs for seq2seq.]
These early seq2seq models had no attention mechanism, and the state vector is accessible only after the ''last'' word of the source text was processed. Although in theory such a vector retains the information about the whole original sentence, in practice the information is poorly preserved. This is because the input is processed sequentially by one recurrent network into a ''fixed''-size output vector, which is then processed by another recurrent network into an output. If the input is long, then the output vector would not be able to contain all relevant information, degrading the output. As evidence, reversing the input sentence improved seq2seq translation.
The ''RNNsearch'' model introduced an attention mechanism to seq2seq for machine translation to solve the bottleneck problem (of the ''fixed-size'' output vector), allowing the model to process long-distance dependencies more easily. The name is because it "emulates searching through a source sentence during decoding a translation".[
The relative performances were compared between global (that of ''RNNsearch'') and local (sliding window) attention model architectures for machine translation, finding that mixed attention had higher quality than global attention, while local attention reduced translation time.
In 2016, ]Google Translate
Google Translate is a multilingualism, multilingual neural machine translation, neural machine translation service developed by Google to translation, translate text, documents and websites from one language into another. It offers a web applic ...
was revamped to Google Neural Machine Translation, which replaced the previous model based on statistical machine translation. The new model was a seq2seq model where the encoder and the decoder were both 8 layers of bidirectional LSTM. It took nine months to develop, and it outperformed the statistical approach, which took ten years to develop.
Parallelizing attention
Seq2seq models with attention (including self-attention) still suffered from the same issue with recurrent networks, which is that they are hard to parallelize, which prevented them from being accelerated on GPUs. In 2016, ''decomposable attention'' applied a self-attention mechanism to feedforward networks, which are easy to parallelize, and achieved SOTA result in textual entailment with an order of magnitude fewer parameters than LSTMs. One of its authors, Jakob Uszkoreit, suspected that attention ''without'' recurrence would be sufficient for language translation, thus the title "attention is ''all'' you need". That hypothesis was against conventional wisdom at the time, and even his father Hans Uszkoreit, a well-known computational linguist, was skeptical.[ In the same year, self-attention (called ''intra-attention or'' ''intra-sentence attention'') was proposed for LSTMs.
In 2017, the original (100M-sized) encoder-decoder transformer model was proposed in the " Attention is all you need" paper. At the time, the focus of the research was on improving seq2seq for machine translation, by removing its recurrence to process all tokens in parallel, but preserving its dot-product attention mechanism to keep its text processing performance.][ This led to the introduction of a multi-head attention model that was easier to parallelize due to the use of independent heads and the lack of recurrence. Its parallelizability was an important factor to its widespread use in large neural networks.
]
AI boom era
Already in spring 2017, even before the "Attention is all you need" preprint was published, one of the co-authors applied the "decoder-only" variation of the architecture to generate fictitious Wikipedia articles. Transformer architecture is now used alongside many generative models that contribute to the ongoing AI boom.
In language modelling, ELMo (2018) was a bi-directional LSTM that produces contextualized word embedding
In natural language processing, a word embedding is a representation of a word. The embedding is used in text analysis. Typically, the representation is a real-valued vector that encodes the meaning of the word in such a way that the words that ...
s, improving upon the line of research from bag of words and word2vec
Word2vec is a technique in natural language processing (NLP) for obtaining vector representations of words. These vectors capture information about the meaning of the word based on the surrounding words. The word2vec algorithm estimates these rep ...
. It was followed by BERT (2018), an encoder-only Transformer model. In 2019 October, Google started using BERT to process search queries. In 2020, Google Translate replaced the previous RNN-encoder–RNN-decoder model by a Transformer-encoder–RNN-decoder model.
Starting in 2018, the OpenAI GPT series of decoder-only Transformers became state of the art in natural language generation. In 2022, a chatbot based on GPT-3, ChatGPT, became unexpectedly popular, triggering a boom around large language models.
Since 2020, Transformers have been applied in modalities beyond text, including the vision transformer, speech recognition,[ robotics,] and multimodal. The vision transformer, in turn, stimulated new developments in convolutional neural network
A convolutional neural network (CNN) is a type of feedforward neural network that learns features via filter (or kernel) optimization. This type of deep learning network has been applied to process and make predictions from many different ty ...
s. Image and video generators like DALL-E (2021), Stable Diffusion 3 (2024), and Sora (2024), use Transformers to analyse input data (like text prompts) by breaking it down into "tokens" and then calculating the relevance between each token using self-attention, which helps the model understand the context and relationships within the data.
Training
Methods for stabilizing training
The plain transformer architecture had difficulty converging. In the original paper[ the authors recommended using learning rate warmup. That is, the learning rate should linearly scale up from 0 to maximal value for the first part of the training (usually recommended to be 2% of the total number of training steps), before decaying again.
A 2020 paper found that using layer normalization ''before'' (instead of after) multiheaded attention and feedforward layers stabilizes training, not requiring learning rate warmup.]
Pretrain-finetune
Transformers typically are first pretrained by self-supervised learning on a large generic dataset, followed by supervised fine-tuning on a small task-specific dataset. The pretrain dataset is typically an unlabeled large corpus, such as The Pile. Tasks for pretraining and fine-tuning commonly include:
* language modeling[
* next-sentence prediction][
* question answering][
* reading comprehension
* sentiment analysis][
* paraphrasing][
The T5 transformer report] documents a large number of natural language
A natural language or ordinary language is a language that occurs naturally in a human community by a process of use, repetition, and change. It can take different forms, typically either a spoken language or a sign language. Natural languages ...
pretraining tasks. Some examples are:
* restoring or repairing incomplete or corrupted text. For example, the input, ''"Thank youme to your partyweek",'' might generate the output, ''"Thank you for inviting me to your party last week".''
* translation between natural languages ( machine translation)
* judging the pragmatic acceptability of natural language. For example, the following sentence might be judged "not acceptable", because even though it is syntactically well-formed, it is improbable in ordinary human usage: ''The course is jumping well.''
Note that while each of these tasks is trivial or obvious for human native speakers of the language (or languages), they have typically proved challenging for previous generations of machine learning architecture.
Tasks
In general, there are 3 classes of language modelling tasks: "masked", "autoregressive", and "prefixLM".[ These classes are independent of a specific modeling architecture such as Transformer, but they are often discussed in the context of Transformer.
In a masked task,][ one or more of the tokens is masked out, and the model would produce a probability distribution predicting what the masked-out tokens are based on the context. The loss function for the task is typically sum of log-perplexities for the masked-out tokens: and the model is trained to minimize this loss function. The BERT series of models are trained for masked token prediction and another task.
In an autoregressive task,][ the entire sequence is masked at first, and the model produces a probability distribution for the first token. Then the first token is revealed and the model predicts the second token, and so on. The loss function for the task is still typically the same. The GPT series of models are trained by autoregressive tasks.
In a prefixLM task,][ the sequence is divided into two parts. The first part is presented as context, and the model predicts the first token of the second part. Then that would be revealed, and the model predicts the second token, and so on. The loss function for the task is still typically the same. The T5 series of models are trained by prefixLM tasks.
Note that "masked" as in "masked language modelling" is not "masked" as in " masked attention", and "prefixLM" (prefix language modeling) is not "prefixLM" (prefix language model).
]
Architecture
All transformers have the same primary components:
* Tokenizers, which convert text into tokens.
* Embedding layer, which converts tokens and positions of the tokens into vector representations.
* Transformer layers, which carry out repeated transformations on the vector representations, extracting more and more linguistic information. These consist of alternating attention and feedforward layers. There are two major types of transformer layers: encoder layers and decoder layers, with further variants.
* Un-embedding layer, which converts the final vector representations back to a probability distribution over the tokens.
The following description follows exactly the Transformer as described in the original paper. There are variants, described in the following section.
By convention, we write all vectors as row vectors. This, for example, means that pushing a vector through a linear layer means multiplying it by a weight matrix on the right, as .
Tokenization
As the Transformer architecture natively processes numerical data, not text, there must be a translation between text and tokens. A token is an integer that represents a character, or a short segment of characters. On the input side, the input text is parsed into a token sequence. Similarly, on the output side, the output tokens are parsed back to text. The module doing the conversion between texts and token sequences is a tokenizer.
The set of all tokens is the vocabulary of the tokenizer, and its size is the ''vocabulary size'' . When faced with tokens outside the vocabulary, typically a special token is used, written as " NK for "unknown".
Some commonly used tokenizers are byte pair encoding, WordPiece, and SentencePiece.
Embedding
Each token is converted into an embedding vector via a lookup table
In computer science, a lookup table (LUT) is an array data structure, array that replaces runtime (program lifecycle phase), runtime computation of a mathematical function (mathematics), function with a simpler array indexing operation, in a proc ...
. Equivalently stated, it multiplies a one-hot representation of the token by an embedding matrix . For example, if the input token is , then the one-hot representation is
Un-embedding
An un-embedding layer is almost the reverse of an embedding layer. Whereas an embedding layer converts a token into a vector, an un-embedding layer converts a vector into a probability distribution over tokens.
The un-embedding layer is a linear- softmax layer:\mathrm(x) = \mathrm(xW + b)The matrix has shape (d_, n_). The embedding matrix M and the un-embedding matrix W are sometimes required to be transposes of each other, a practice called weight tying.
Positional encoding
A positional encoding is a fixed-size vector representation of the relative positions of tokens within a sequence: it provides the transformer model with information about ''where'' the words are in the input sequence. This induces a bias
Bias is a disproportionate weight ''in favor of'' or ''against'' an idea or thing, usually in a way that is inaccurate, closed-minded, prejudicial, or unfair. Biases can be innate or learned. People may develop biases for or against an individ ...
towards the order of the input sequence, so that, for example, the input sequence " man bites dog" is processed differently from "dog bites man".
The positional encoding is defined as a function of type f: \R \to \R^d; d \in \mathbb, d > 0, where d is a positive even integer
An integer is the number zero (0), a positive natural number (1, 2, 3, ...), or the negation of a positive natural number (−1, −2, −3, ...). The negations or additive inverses of the positive natural numbers are referred to as negative in ...
. The full positional encoding defined in the original paper[ is:(f(t)_, f(t)_) = (\sin(\theta), \cos(\theta)) \quad \forall k \in \where \theta = \frac, r = N^.
Here, N is a free parameter that should be significantly larger than the biggest k that would be input into the positional encoding function. The original paper uses N=10000.
The function is in a simpler form when written as a complex function of type f: \R \to \mathbb C^f(t) = \left(e^\right)_where r = N^.
The main reason for using this positional encoding function is that using it, shifts are linear transformations:f(t + \Delta t) = \mathrm(f(\Delta t)) f(t)where \Delta t \in \R is the distance one wishes to shift. This allows the transformer to take any encoded position, and find the encoding of the position n-steps-ahead or n-steps-behind, by a matrix multiplication.
By taking a linear sum, any convolution can also be implemented as linear transformations:\sum_j c_j f(t + \Delta t_j) = \left(\sum_j c_j \,\mathrm(f(\Delta t_j))\right) f(t)for any constants c_j. This allows the transformer to take any encoded position and find a linear sum of the encoded locations of its neighbors. This sum of encoded positions, when fed into the attention mechanism, would create attention weights on its neighbors, much like what happens in a ]convolutional neural network
A convolutional neural network (CNN) is a type of feedforward neural network that learns features via filter (or kernel) optimization. This type of deep learning network has been applied to process and make predictions from many different ty ...
language model. In the author's words, "we hypothesized it would allow the model to easily learn to attend by relative position."
In typical implementations, all operations are done over the real numbers, not the complex numbers, but since complex multiplication can be implemented as real 2-by-2 matrix multiplication, this is a mere notational difference.
Encoder-decoder (overview)
Like earlier seq2seq models, the original transformer model used an encoder-decoder architecture. The encoder consists of encoding layers that process all the input tokens together one layer after another, while the decoder consists of decoding layers that iteratively process the encoder's output and the decoder's output tokens so far.
The purpose of each encoder layer is to create contextualized representations of the tokens, where each representation corresponds to a token that "mixes" information from other input tokens via self-attention mechanism. Each decoder layer contains two attention sublayers: (1) cross-attention for incorporating the output of encoder (contextualized input token representations), and (2) self-attention for "mixing" information among the input tokens to the decoder (i.e. the tokens generated so far during inference time).
Both the encoder and decoder layers have a feed-forward neural network for additional processing of their outputs and contain residual connections and layer normalization steps.[ These feed-forward layers contain most of the parameters in a Transformer model.
]
Feedforward network
The feedforward network (FFN) modules in a Transformer are 2-layered multilayer perceptrons:\mathrm(x) = \phi(xW^ + b^)W^ + b^where W^ and W^ are weight matrices and b^ and b^ are bias vectors, and \phi is its activation function. The original Transformer used ReLU activation.
The number of neurons in the middle layer is called ''intermediate size'' (GPT), ''filter size'' (BERT),[ or ''feedforward size'' (BERT).][ It is typically larger than the embedding size. For example, in both GPT-2 series and BERT series, the intermediate size of a model is 4 times its embedding size: d_ = 4 d_.
]
Scaled dot-product attention
Attention head
The attention mechanism used in the Transformer architecture are scaled dot-product
In mathematics, the dot product or scalar productThe term ''scalar product'' means literally "product with a scalar as a result". It is also used for other symmetric bilinear forms, for example in a pseudo-Euclidean space. Not to be confused wi ...
attention
Attention or focus, is the concentration of awareness on some phenomenon to the exclusion of other stimuli. It is the selective concentration on discrete information, either subjectively or objectively. William James (1890) wrote that "Atte ...
units. For each unit, the transformer model learns three weight matrices: the query weights W^Q, the key weights W^K, and the value weights W^V.
The module takes three sequences, a query sequence, a key sequence, and a value sequence. The query sequence is a sequence of length \ell_, and each entry is a vector of dimension d_. Similarly for the key and value sequences.
For each vector x_ in the query sequence, it is multiplied by a matrix W^Q to produce a query vector q_i = x_ W^Q. The matrix of all query vectors is the query matrix:Q = X_ W^QSimilarly, we construct the key matrix K = X_ W^K and the value matrix V = X_ W^V.
It is usually the case that all W^Q, W^K, W^V are square matrices, meaning d_= d_, etc.
Attention weights are calculated using the query and key vectors: the attention weight a_ from token i to token j is the dot product
In mathematics, the dot product or scalar productThe term ''scalar product'' means literally "product with a Scalar (mathematics), scalar as a result". It is also used for other symmetric bilinear forms, for example in a pseudo-Euclidean space. N ...
between q_i and k_j. The attention weights are divided by the square root of the dimension of the key vectors, \sqrt, which stabilizes gradients during training, and passed through a softmax which normalizes the weights. The fact that W^Q and W^K are different matrices allows attention to be non-symmetric: if token i attends to token j (i.e. q_i\cdot k_j is large), this does not necessarily mean that token j will attend to token i (i.e. q_j\cdot k_i could be small). The output of the attention unit for token i is the weighted sum of the value vectors of all tokens, weighted by a_, the attention from token i to each token.
The attention calculation for all tokens can be expressed as one large matrix calculation using the softmax function, which is useful for training due to computational matrix operation optimizations that quickly compute matrix operations. The matrices Q, K and V are defined as the matrices where the ith rows are vectors q_i, k_i, and v_i respectively. Then we can represent the attention as\begin
\text(Q, K, V) = \text\left(\frac\right)V
\end
where the softmax is applied over each of the rows of the matrix.
The number of dimensions in a query vector is ''query size'' d_ and similarly for the ''key size'' d_ and ''value size'' d_. The output dimension of an attention head is its ''head dimension'' d_. The attention mechanism requires the following three equalities to hold:\ell_=\ell_, \;d_=d_, \; d_=d_
but is otherwise unconstrained.
If the attention head is used in a self-attention fashion, then X_ = X_ = X_ . If the attention head is used in a cross-attention fashion, then usually X_ \neq X_ = X_ . It is theoretically possible for all three to be different, but that is rarely the case in practice.
Multiheaded attention
One set of \left( W^Q, W^K, W^V \right) matrices is called an ''attention head'', and each layer in a transformer model has multiple attention heads. While each attention head attends to the tokens that are relevant to each token, multiple attention heads allow the model to do this for different definitions of "relevance". Specifically, the query and key projection matrices, W^Q and W^K , which are involved in the attention score computation, defines the "relevance". Meanwhile, the value projection matrix W^V, in combination with the part of the output projection matrix W^O, determines how the attended tokens influence what information is passed to subsequent layers and ultimately the output logits. In addition, the scope of attention, or the range of token relationships captured by each attention head, can expand as tokens pass through successive layers. This allows the model to capture more complex and long-range dependencies in deeper layers. Many transformer attention heads encode relevance relations that are meaningful to humans. For example, some attention heads can attend mostly to the next word, while others mainly attend from verbs to their direct objects. The computations for each attention head can be performed in parallel, which allows for fast processing. The outputs for the attention layer are concatenated to pass into the feed-forward neural network layers.
Concretely, let the multiple attention heads be indexed by i, then we have\text(Q, K, V) = \text_(\text(XW^Q_i, XW^K_i, XW^V_i)) W^O where the matrix X is the concatenation of word embeddings, and the matrices W^Q_i, W^K_i, W^V_i are "projection matrices" owned by individual attention head i, and W^O is a final projection matrix owned by the whole multi-headed attention head.
It is theoretically possible for each attention head to have a different head dimension d_, but that is rarely the case in practice.
As an example, in the smallest GPT-2 model, there are only self-attention mechanisms. It has the following dimensions:d_ = 768, n_ = 12, d_ = 64Since 12 \times 64 = 768, its output projection matrix W^O \in \R^ is a square matrix.
Masked attention
The Transformer architecture is constructed to calculate output tokens iteratively. Assuming t = 0 refers to the calculation of the first output token i = 0, for step t > 0, the output token i = 0 shall remain constant. This ensures properties of the model similar to autoregressive models.[ Therefore, at every time step t, the calculation for all outputs i should not have access to tokens at position j for j >= i (as it naturally is the case for time step t=i, when tokens j>t are not yet calculated). This behavior may be accomplished before the softmax stage by adding a mask matrix M that is -\infty at entries where the attention link must be cut, and 0 at other places:\begin
\text(Q, K, V) = \text\left(M + \frac\right)V
\end The following matrix is commonly used in decoder self-attention modules, called "causal masking":M_ = \begin
0 & -\infty & -\infty & \dots & -\infty \\
0 & 0 & -\infty & \dots & -\infty \\
0 & 0 & 0 & \dots & -\infty \\
\vdots & \vdots & \vdots & \ddots & \vdots \\
0 & 0 & 0 & \dots & 0
\end
In words, it means that each token can pay attention to itself, and every token before it, but not any after it. A non-masked attention module can be thought of as a masked attention module where the mask has all entries zero. As an example of an uncommon use of mask matrix, the XLNet considers all masks of the form P M_ P^
, where P
is a random ]permutation matrix
In mathematics, particularly in matrix theory, a permutation matrix is a square binary matrix that has exactly one entry of 1 in each row and each column with all other entries 0. An permutation matrix can represent a permutation of elements. ...
.
Encoder
An encoder consists of an embedding layer, followed by multiple encoder layers.
Each encoder layer consists of two major components: a self-attention mechanism and a feed-forward layer. It takes an input as a sequence of input vectors, applies the self-attention mechanism, to produce an intermediate sequence of vectors, then applies the feed-forward layer for each vector individually. Schematically, we have:\begin
\text & h_0, h_1, \dots\\
\text H &= \begin h_0 \\ h_1 \\ \vdots \end \\
\text(H) &= \begin \text(\text(H, H, H)_0) \\ \text(\text(H, H, H)_1) \\ \vdots \end \\
\end
where \text stands for "feed-forward network". We can more succinctly write it as\text(H) = \text(\text(H, H, H))
with the implicit convention that the \text is applied to each row of the matrix individually.
The encoder layers are stacked. The first encoder layer takes the sequence of input vectors from the embedding layer, producing a sequence of vectors. This sequence of vectors is processed by the second encoder, and so on. The output from the final encoder layer is then used by the decoder.
As the encoder processes the entire input all at once, every token can attend to every other token (all-to-all attention), so there is no need for causal masking.
Decoder
A decoder consists of an embedding layer, followed by multiple decoder layers, followed by an un-embedding layer.
Each decoder consists of three major components: a causally masked self-attention mechanism, a cross-attention mechanism, and a feed-forward neural network. The decoder functions in a similar fashion to the encoder, but an additional attention mechanism is inserted which instead draws relevant information from the encodings generated by the encoders. This mechanism can also be called the ''encoder-decoder attention''.[
Like the first encoder, the first decoder takes positional information and embeddings of the output sequence as its input, rather than encodings. The transformer must not use the current or future output to predict an output, so the output sequence must be partially masked to prevent this reverse information flow.][ This allows for autoregressive text generation. For decoding, all-to-all attention is inappropriate, because a token cannot attend to tokens not yet generated. Thus, the self-attention module in the decoder is causally masked.
In contrast, the cross-attention mechanism attends to the output vectors of the encoder, which is computed before the decoder starts decoding. Consequently, there is no need for masking in the cross-attention mechanism.
Schematically, we have:\begin
H' &= \text(H, H, H) \\
\text(H) &=\text(\text(H', H^E, H^E))
\end
where H^E
is the matrix with rows being the output vectors from the encoder.
The last decoder is followed by a final un-embedding layer. to produce the output probabilities over the vocabulary. Then, one of the tokens is sampled according to the probability, and the decoder can be run again to produce the next token, etc, autoregressively generating output text.
]
Adapted architectures
Many large language models
A large language model (LLM) is a language model trained with Self-supervised learning, self-supervised machine learning on a vast amount of text, designed for natural language processing tasks, especially Natural language generation, language g ...
, since they do not need to predict a whole new sequence from an input sequence, only use the encoder or decoder of the original transformer architecture. Early Generative pre-trained transformer, GPT models are decoder-only models trained to predict the next token in a sequence. BERT, another language model, only makes use of an encoder, and is trained to predict a randomly masked token in a sequence.[
]
Full transformer architecture
Sublayers
Each encoder layer contains 2 sublayers: the self-attention and the feedforward network. Each decoder layer contains 3 sublayers: the causally masked self-attention, the cross-attention, and the feedforward network.
The final points of detail are the Residual neural network, residual connections and layer normalization (LayerNorm, or LN), which while conceptually unnecessary, are necessary for numerical stability and convergence.
The residual connection, which is introduced to avoid vanishing gradient issues and stabilize the training process, can be expressed as follows: y = F(x) + x. The expression indicates that an output y is the sum of the transformation of input x (F(x)) and the input itself (x). Adding the input x can preserve the input information and avoid issues when the gradient of F(x) is close to zero.
Similarly to how the feedforward network modules are applied individually to each vector, the LayerNorm is also applied individually to each vector.
There are two common conventions in use: the ''post-LN'' and the ''pre-LN'' convention. In the post-LN convention, the output of each sublayer is \mathrm(x + \mathrm(x))where \mathrm(x) is the function implemented by the sublayer itself.
In the pre-LN convention, the output of each sublayer isx + \mathrm(\mathrm(x))The original 2017 Transformer used the post-LN convention. It was difficult to train and required careful hyperparameter tuning and a "warm-up" in learning rate, where it starts small and gradually increases. The pre-LN convention, proposed several times in 2018, was found to be easier to train, requiring no warm-up, leading to faster convergence.[
]
Pseudocode
The following is the pseudocode for a standard pre-LN encoder-decoder Transformer, adapted from
input: Encoder input t_e
Decoder input t_d
output: Array of probability distributions, with shape (decoder vocabulary size x length(decoder output sequence))
/* encoder */
z_e ← encoder.tokenizer(t_e)
for each t in 1:length(z_e) do
z_e[t] ← encoder.embedding(z_e[t]) + encoder.positional_embedding(t)
for each l in 1:length(encoder.layers) do
layer ← encoder.layers[l]
/* first sublayer */
z_e_copy ← copy(z_e)
for each t in 1:length(z_e) do
z_e[t] ← layer.layer_norm(z_e[t])
z_e ← layer.multiheaded_attention(z_e, z_e, z_e)
for each t in 1:length(z_e) do
z_e[t] ← z_e[t] + z_e_copy[t]
/* second sublayer */
z_e_copy ← copy(z_e)
for each t in 1:length(z_e) do
z_e[t] ← layer.layer_norm(z_e[t])
z_e ← layer.feedforward(z_e)
for each t in 1:length(z_e) do
z_e[t] ← z_e[t] + z_e_copy[t]
for each t in 1:length(z_e) do
z_e[t] ← encoder.final_layer_norm(z_e[t])
/* decoder */
z_d ← decoder.tokenizer(t_d)
for each t in 1:length(z_d) do
z_d[t] ← decoder.embedding(z_d[t]) + decoder.positional_embedding(t)
for each l in 1:length(decoder.layers) do
layer ← decoder.layers[l]
/* first sublayer */
z_d_copy ← copy(z_d)
for each t in 1:length(z_d) do
z_d[t] ← layer.layer_norm(z_d[t])
z_d ← layer.masked_multiheaded_attention(z_d, z_d, z_d)
for each t in 1:length(z_d) do
z_d[t] ← z_d[t] + z_d_copy[t]
/* second sublayer */
z_d_copy ← copy(z_d)
for each t in 1:length(z_d) do
z_d[t] ← layer.layer_norm(z_d[t])
z_d ← layer.multiheaded_attention(z_d, z_e, z_e)
for each i in 1:length(z_d) do
z_d[t] ← z_d[t] + z_d_copy[t]
/* third sublayer */
z_d_copy ← copy(z_d)
for each t in 1:length(z_d) do
z_d[t] ← layer.layer_norm(z_d[t])
z_d ← layer.feedforward(z_d)
for each t in 1:length(z_d) do
z_d[t] ← z_d[t] + z_d_copy[t]
z_d ← decoder.final_layer_norm(z_d)
output_distributions ← []
for each t in 1:length(z_d) do
output_distributions.append(decoder.unembed(z_d[t]))
return output_distributions
Terminology
The Transformer architecture, being modular, allows variations. Several common variations are described here.
An "encoder-only" Transformer applies the encoder to map an input text into a sequence of vectors that represent the input text. This is usually used for text embedding and Feature learning, representation learning for downstream applications. BERT is encoder-only. They are less often used currently, as they were found to be not significantly better than training an encoder-decoder Transformer, then taking just the encoder.[
A "decoder-only" Transformer is not literally decoder-only, since without an encoder, the cross-attention mechanism has nothing to attend to. Thus, the decoder layers in a decoder-only Transformer is composed of just two sublayers: the causally masked self-attention, and the feedforward network. This is usually used for Natural language generation, text generation and Large language model#Instruction tuning, instruction following. The models in the GPT series and Chinchilla (language model), Chinchilla series are decoder-only.
An "encoder-decoder" Transformer is generally the same as the original Transformer, with 2 sublayers per encoder layer and 3 sublayers per decoder layer, etc. They might have minor architectural improvements, such as #Alternative activation functions, alternative activation functions, #pre-LN, changing the location of normalization, etc. This is also usually used for text generation and instruction following. The models in the T5 (language model), T5 series are encoder-decoder.][
A "prefixLM" (prefix language model) is a decoder-only architecture, but with prefix masking, which is different from causal masking. Specifically, it has mask of the form][M_ = \begin
\mathbf & -\infty \\
\mathbf & M_
\end
where the first columns correspond to the "prefix", and the subsequent columns correspond to the autoregressively generated text based on the prefix. They resemble encoder-decoder models, but has less "sparsity". Such models are rarely used, though they are cited as theoretical possibilities and benchmarked comparisons.]
There are also mixed seq2seq models. For example, in 2020, Google Translate replaced the previous RNN-encoder–RNN-decoder model by a Transformer-encoder–RNN-decoder model, on the argument that an RNN-decoder runs much faster than Transformer-decoder when run autoregressively.
Subsequent work
Alternative activation functions
The original transformer uses ReLU activation function. Other activation functions were developed. The Llama (language model), Llama series and PaLM used SwiGLU; both GPT-1 and BERT[ used GELU.
Alternative activation functions are often used in combination with Gated Linear Units in the feedforward module.][
]
Alternative normalizations
The normalization used in the Transformer can be different from LayerNorm. One example is RMSNorm which is used in the Llama (language model), Llama series. Other examples include CapsuleNorm ScaleNorm, or FixNorm.[
]
Alternative positional encodings
Transformers may use other positional encoding methods than sinusoidal.
The original Transformer paper reported using a learned positional encoding, but finding it not superior to the sinusoidal one.[ Later, found that causal masking itself provides enough signal to a Transformer decoder that it can learn to implicitly perform absolute positional encoding without the positional encoding module.
]
RoPE
RoPE (rotary positional embedding), is best explained by considering a list of 2-dimensional vectors [(x^_1, x^_1), (x^_2, x^_2), (x^_3, x^_3), ...]. Now pick some angle \theta. Then RoPE encoding is\text\big(x^_m, x^_m, m\big) =
\begin \cos m \theta & - \sin m \theta \\
\sin m \theta & \cos m \theta \end
\begin x^_m \\ x^_m \\ \end = \begin x^_m \cos m\theta - x^_m \sin m \theta \\ x^_m \cos m\theta + x^_m \sin m \theta \\ \end
Equivalently, if we write the 2-dimensional vectors as complex numbers z_m := x^_m + i x^_m, then RoPE encoding is just multiplication by an angle:\text\big(z_m, m\big) = e^ z_m
For a list of 2n-dimensional vectors, a RoPE encoder is defined by a sequence of angles \theta^, ..., \theta^. Then the RoPE encoding is applied to each pair of coordinates.
The benefit of RoPE is that the dot-product between two vectors depends on their relative location only:
\text\big(x, m\big)^T\text\big(y, n\big)
=
\text\big(x, m+k\big)^T\text\big(y, n+k\big)
for any integer k.
ALiBi
ALiBi (Attention with Linear Biases) is not a ''replacement'' for the positional encoder on the original transformer. Instead, it is an ''additional'' positional encoder that is directly plugged into the attention mechanism. Specifically, the ALiBi attention mechanism is\begin
\text(Q, K, V) = \text\left(\frac + s B\right)V
\endHere, s is a real number ("scalar"), and B is the ''linear bias'' matrix defined byB = \begin
0 & 1 & 2 & 3 & \cdots \\
-1 & 0 & 1 & 2 & \cdots \\
-2 & -1 & 0 & 1 & \cdots \\
-3 & -2 & -1 & 0 & \cdots \\
\vdots & \vdots & \vdots & \vdots & \ddots \\
\end
in other words, B_ = j - i. The idea being that the linear bias matrix is a softened mask. Just as 0 represent full attention paid, and -\infty represents no attention paid, the linear bias matrix increases attention paid in one direction and decreases attention paid in the other direction.
ALiBi allows pretraining on short context windows, then fine-tuning on longer context windows. Since it is directly plugged into the attention mechanism, it can be combined with any positional encoder that is plugged into the "bottom" of the entire network (which is where the sinusoidal encoder on the original transformer, as well as RoPE and many others, are located).
Relative Position Encodings
Relative Position Encodings is similar to ALiBi, but more generic:\begin
\text(Q, K, V) = \text\left(\frac + B\right)V
\endwhere B is a Toeplitz matrix, that is, B_ = B_ whenever i-j = i'-j'. This is contrasted with the original sinusoidal positional encoding, which is an "absolute positional encoding".
Efficient implementation
The transformer model has been implemented in standard deep learning Framework (computer science), frameworks such as TensorFlow and PyTorch. ''Transformers'' is a library produced by Hugging Face that supplies transformer-based architectures and pretrained models.[
]
KV caching
When an autoregressive transformer is used for inference, such as generating text, the query vector is different at each step, but the already-computed key and value vectors are always the same. The KV caching method saves the computed key and value vectors at each attention block, so that they are not recomputed at each new token. PagedAttention applies memory paging to KV caching.
If a transformer is used with a baked-in prompt, such as ["You are a customer support agent..."], then the key and value vectors can be computed for the prompt, and saved on disk. The saving in compute is significant when the model is used for many short interactions, such as in online chatbots.
FlashAttention
FlashAttention is an algorithm that implements the transformer attention mechanism efficiently on a GPU. It is a communication-avoiding algorithm that performs Block matrix#Block matrix operations, matrix multiplications in blocks, such that each block fits within the Cache (computing), cache of a GPU, and by careful management of the blocks it minimizes data copying between GPU caches (as data movement is slow). See the page on Softmax function#Numerical algorithms, softmax for details.
An improved version, FlashAttention-2, was developed to cater to the rising demand for language models capable of handling longer context lengths. It offers enhancements in work partitioning and parallelism, enabling it to achieve up to 230 TFLOPs/s on Nvidia A100, A100 GPUs (FP16/BF16), a 2x speed increase over the original FlashAttention.
Key advancements in FlashAttention-2 include the reduction of non-matmul FLOPs, improved parallelism over the sequence length dimension, better work partitioning between GPU warps, and added support for head dimensions up to 256 and multi-query attention (MQA) and grouped-query attention (GQA).
Benchmarks revealed FlashAttention-2 to be up to 2x faster than FlashAttention and up to 9x faster than a standard attention implementation in PyTorch. Future developments include optimization for new hardware like Nvidia H100, H100 GPUs and new data types like FP8.
Multi-Query Attention
Multi-Query Attention changes the multiheaded attention mechanism. Whereas normally,
\text(Q, K, V) = \text_\left(\text(XW^Q_i, XW^K_i, XW^V_i)\right) W^Owith Multi-Query Attention, there is just one W^K, W^V, thus:
\text(Q, K, V) = \text_\left(\text(XW^Q_i, XW^K, XW^V)\right) W^O
This has a neutral effect on model quality and training speed, but increases inference speed.
More generally, grouped-query attention (GQA) partitions attention heads into groups, each of which shares the key-value pair. MQA is GQA with one group, while standard multiheaded attention is GQA with the maximal number of groups.
Multihead Latent Attention (MLA) is a low-rank approximation to standard MHA. Specifically, each hidden vector, before entering the attention mechanism, is first projected to two low-dimensional spaces ("latent space"), one for query and one for key-value (KV vector). This design minimizes the KV cache, as only the low-dimensional KV vector needs to be cached.[
]
Speculative decoding
Speculative decoding is a method to accelerate token decoding. Similarly to speculative execution in CPUs, future tokens are computed quickly, then verified. If the quickly computed tokens are incorrect, they are discarded and computed slowly.
The key factor in speculative decoding is that a Transformer decoder can verify faster than it can decode, in the following sense.
Suppose we have two transformer models like GPT-3 and GPT-3-small, both with a context window size of 512. To generate an entire context window autoregressively with greedy decoding with GPT-3, it must be run for 512 times, each time generating a token x_1, x_2, ..., x_, taking time 512 T_. However, if we had some educated guess for the values of these tokens, we could verify all of them in parallel, in one run of the model, by checking that each x_t is indeed the token with the largest log-likelihood in the t-th output.
In speculative decoding, a smaller model or some other simple heuristic is used to generate a few speculative tokens that are subsequently verified by the larger model. For example, suppose we use GPT-3-small to generate four speculative tokens: \tilde_1, \tilde_2, \tilde_3, \tilde_4. This only takes 4 T_. These tokens are then run through the larger GPT-3 in one go. Suppose that \tilde_1 and \tilde_2 are verified by GPT-3 as what it would have picked, then those are kept, but \tilde_3 is not, so \tilde_3, \tilde_4 are discarded, and GPT-3 is run on those. This would take 4 T_ + 3 T_, which might be shorter than 4 T_.
For non-greedy decoding, similar ideas apply, except the speculative tokens are accepted or rejected stochastically, in a way that guarantees the final output distribution is the same as if speculative decoding was not used.[
In Multi-Token Prediction, a single forward pass creates a final embedding vector, which then is un-embedded into a token probability. However, that vector can then be further processed by another Transformer block to predict the ''next'' token, and so on for arbitrarily many steps into the future. This trades off accuracy for speed, since each new token costs just one more Transformer block, rather than the entire stack.
]
Sub-quadratic transformers
Training transformer-based architectures can be expensive, especially for long inputs. Many methods have been developed to attempt to address the issue. In the image domain, Swin Transformer is an efficient architecture that performs attention inside shifting windows. In the audio domain, SepTr decouples the attention in time and frequency domains. ''Long Range Arena'' (2020) is a standard benchmark for comparing the behavior of transformer architectures over long inputs.
Alternative attention graphs
The standard attention graph is either all-to-all or causal, both of which scales as O(N^2) where N is the number of tokens in a sequence.
Reformer (2020)[ reduces the computational load from O(N^2) to O(N\ln N) by using locality-sensitive hashing and reversible layers.
Sparse attention uses attention graphs that grows slower than O(N^2). For example, BigBird (2020) uses random small-world networks which grows as O(N).
Ordinary transformers require a memory size that is quadratic in the size of the context window. Attention-free transformers reduce this to a linear dependence while still retaining the advantages of a transformer by linking the key to the value.
]
Random Feature Attention
Random Feature Attention (2021) uses Radial basis function kernel#Fourier random features, Fourier random features:\varphi(x) = \frac[\cos\langle w_1, x\rangle, \sin\langle w_1, x\rangle, \cdots \cos\langle w_D, x\rangle, \sin\langle w_D, x\rangle]^Twhere w_1, ..., w_D are independent samples from the normal distribution N(0, \sigma^2 I). This choice of parameters satisfy \mathbb E[\langle \varphi(x), \varphi(y)\rangle] = e^, or e^ = \mathbb E[\langle e^ \varphi(x), e^\varphi(y)\rangle] \approx \langle e^ \varphi(x), e^\varphi(y)\rangle Consequently, the one-headed attention, with one query, can be written as
\text(q, K, V) = \text\left(\frac\right)V
\approx \fracwhere \sigma = d_K^. Similarly for multiple queries, and for multiheaded attention.
This approximation can be computed in linear time, as we can compute the matrix \varphi(k_i) v_i^T first, then multiply it with the query. In essence, we have managed to obtain a more precise version of \text(Q, K, V) = \text\left(\frac\right)V \approx Q(K^TV/\sqrt)
Performer (2022) uses the same Random Feature Attention, but w_1, ..., w_D are first independently sampled from the normal distribution N(0, \sigma^2 I), then they are Gram–Schmidt process, Gram-Schmidt processed.
Multimodality
Transformers can also be used/adapted for modalities (input or output) beyond just text, usually by finding a way to "tokenize" the modality.
Multimodal models can either be trained from scratch, or by finetuning. A 2022 study found that Transformers pretrained only on natural language can be finetuned on only 0.03% of parameters and become competitive with LSTMs on a variety of logical and visual tasks, demonstrating transfer learning. The LLaVA was a vision-language model composed of a language model (Vicuna-13B) and a vision model (Vision transformer, ViT-L/14), connected by a linear layer. Only the linear layer is finetuned.
Vision transformers[ adapt the transformer to computer vision by breaking down input images as a series of patches, turning them into vectors, and treating them like tokens in a standard transformer.
Conformer] and later Whisper (speech recognition system), Whisper follow the same pattern for speech recognition, first turning the speech signal into a spectrogram, which is then treated like an image, i.e. broken down into a series of patches, turned into vectors and treated like tokens in a standard transformer.
Perceivers are a variant of Transformers designed for multimodality.
For image generation, notable architectures are DALL-E, DALL-E 1 (2021), Parti (2022), Phenaki (2023), and Muse (2023). Unlike later models, DALL-E is not a diffusion model. Instead, it uses a decoder-only Transformer that autoregressively generates a text, followed by the token representation of an image, which is then converted by a variational autoencoder to an image. Parti is an encoder-decoder Transformer, where the encoder processes a text prompt, and the decoder generates a token representation of an image. Muse is an encoder-only Transformer that is trained to predict masked image tokens from unmasked image tokens. During generation, all input tokens are masked, and the highest-confidence predictions are included for the next iteration, until all tokens are predicted.[ Phenaki is a text-to-video model. It is a bidirectional masked transformer conditioned on pre-computed text tokens. The generated tokens are then decoded to a video.][
]
Applications
The transformer has had great success in natural language processing
Natural language processing (NLP) is a subfield of computer science and especially artificial intelligence. It is primarily concerned with providing computers with the ability to process data encoded in natural language and is thus closely related ...
(NLP). Many large language models such as GPT-2, GPT-3, GPT-4, Gemini (chatbot), Gemini, AlbertAGPT, Anthropic#Claude, Claude, BERT, Grok (chatbot), Grok, XLNet, BERT (language model)#RoBERTa, RoBERTa and ChatGPT demonstrate the ability of transformers to perform a wide variety of NLP-related subtasks and their related real-world applications, including:
* machine translation
* time series prediction
* Automatic summarization, document summarization
* Natural language generation, document generation
* Named-entity recognition, named entity recognition (NER)
* Computer programming, writing computer code based on requirements expressed in natural language.
* speech-to-text
Beyond traditional NLP, the transformer architecture has had success in other applications, such as:
* sequence analysis, biological sequence analysis
* Computer vision, video understanding
* Protein structure prediction, protein folding (such as AlphaFold)
* Evaluation function, evaluating chess board positions. Using static evaluation alone (that is, with no Minimax search) transformer achieved an Elo rating system, Elo of 2895, putting it at Grandmaster (chess), grandmaster level.[
]
See also
*
*
*
*
*
*
*
Notes
References
Further reading
* Alexander Rush
The Annotated transformer
, Harvard NLP group, 3 April 2018
*
*
*
{{Artificial intelligence navbox
Google software
Neural network architectures
2017 in artificial intelligence