5. LLM Architecture
LLM Architecture
The goal of this fifth phase is very simple: Develop the architecture of the full LLM. Put everything together, apply all the layers and create all the functions to generate text or transform text to IDs and backwards.
This architecture will be used for both, training and predicting text after it was trained.
LLM architecture example from https://github.com/rasbt/LLMs-from-scratch/blob/main/ch04/01_main-chapter-code/ch04.ipynb:
A high level representation can be observed in:
Input (Tokenized Text): The process begins with tokenized text, which is converted into numerical representations.
Token Embedding and Positional Embedding Layer: The tokenized text is passed through a token embedding layer and a positional embedding layer, which captures the position of tokens in a sequence, critical for understanding word order.
Transformer Blocks: The model contains 12 transformer blocks, each with multiple layers. These blocks repeat the following sequence:
Masked Multi-Head Attention: Allows the model to focus on different parts of the input text at once.
Layer Normalization: A normalization step to stabilize and improve training.
Feed Forward Layer: Responsible for processing the information from the attention layer and making predictions about the next token.
Dropout Layers: These layers prevent overfitting by randomly dropping units during training.
Final Output Layer: The model outputs a 4x50,257-dimensional tensor, where 50,257 represents the size of the vocabulary. Each row in this tensor corresponds to a vector that the model uses to predict the next word in the sequence.
Goal: The objective is to take these embeddings and convert them back into text. Specifically, the last row of the output is used to generate the next word, represented as "forward" in this diagram.
Code representation
Let's explain it step by step:
GELU Activation Function
Purpose and Functionality
GELU (Gaussian Error Linear Unit): An activation function that introduces non-linearity into the model.
Smooth Activation: Unlike ReLU, which zeroes out negative inputs, GELU smoothly maps inputs to outputs, allowing for small, non-zero values for negative inputs.
Mathematical Definition:
The goal of the use of this function after linear layers inside the FeedForward layer is to change the linear data to be none linear to allow the model to learn complex, non-linear relationships.
FeedForward Neural Network
Shapes have been added as comments to understand better the shapes of matrices:
Purpose and Functionality
Position-wise FeedForward Network: Applies a two-layer fully connected network to each position separately and identically.
Layer Details:
First Linear Layer: Expands the dimensionality from
emb_dim
to4 * emb_dim
.GELU Activation: Applies non-linearity.
Second Linear Layer: Reduces the dimensionality back to
emb_dim
.
As you can see, the Feed Forward network uses 3 layers. The first one is a linear layer that will multiply the dimensions by 4 using linear weights (parameters to train inside the model). Then, the GELU function is used in all those dimensions to apply none-linear variations to capture richer representations and finally another linear layer is used to get back to the original size of dimensions.
Multi-Head Attention Mechanism
This was already explained in an earlier section.
Purpose and Functionality
Multi-Head Self-Attention: Allows the model to focus on different positions within the input sequence when encoding a token.
Key Components:
Queries, Keys, Values: Linear projections of the input, used to compute attention scores.
Heads: Multiple attention mechanisms running in parallel (
num_heads
), each with a reduced dimension (head_dim
).Attention Scores: Computed as the dot product of queries and keys, scaled and masked.
Masking: A causal mask is applied to prevent the model from attending to future tokens (important for autoregressive models like GPT).
Attention Weights: Softmax of the masked and scaled attention scores.
Context Vector: Weighted sum of the values, according to attention weights.
Output Projection: Linear layer to combine the outputs of all heads.
The goal of this network is to find the relations between tokens in the same context. Moreover, the tokens are divided in different heads in order to prevent overfitting although the final relations found per head are combined at the end of this network.
Moreover, during training a causal mask is applied so later tokens are not taken into account when looking the specific relations to a token and some dropout is also applied to prevent overfitting.
Layer Normalization
Purpose and Functionality
Layer Normalization: A technique used to normalize the inputs across the features (embedding dimensions) for each individual example in a batch.
Components:
eps
: A small constant (1e-5
) added to the variance to prevent division by zero during normalization.scale
andshift
: Learnable parameters (nn.Parameter
) that allow the model to scale and shift the normalized output. They are initialized to ones and zeros, respectively.
Normalization Process:
Compute Mean (
mean
): Calculates the mean of the inputx
across the embedding dimension (dim=-1
), keeping the dimension for broadcasting (keepdim=True
).Compute Variance (
var
): Calculates the variance ofx
across the embedding dimension, also keeping the dimension. Theunbiased=False
parameter ensures that the variance is calculated using the biased estimator (dividing byN
instead ofN-1
), which is appropriate when normalizing over features rather than samples.Normalize (
norm_x
): Subtracts the mean fromx
and divides by the square root of the variance pluseps
.Scale and Shift: Applies the learnable
scale
andshift
parameters to the normalized output.
The goal is to ensure a mean of 0 with a variance of 1 across all dimensions of the same token . The goal of this is to stabilize the training of deep neural networks by reducing the internal covariate shift, which refers to the change in the distribution of network activations due to the updating of parameters during training.
Transformer Block
Shapes have been added as comments to understand better the shapes of matrices:
Purpose and Functionality
Composition of Layers: Combines multi-head attention, feedforward network, layer normalization, and residual connections.
Layer Normalization: Applied before the attention and feedforward layers for stable training.
Residual Connections (Shortcuts): Add the input of a layer to its output to improve gradient flow and enable training of deep networks.
Dropout: Applied after attention and feedforward layers for regularization.
Step-by-Step Functionality
First Residual Path (Self-Attention):
Input (
shortcut
): Save the original input for the residual connection.Layer Norm (
norm1
): Normalize the input.Multi-Head Attention (
att
): Apply self-attention.Dropout (
drop_shortcut
): Apply dropout for regularization.Add Residual (
x + shortcut
): Combine with the original input.
Second Residual Path (FeedForward):
Input (
shortcut
): Save the updated input for the next residual connection.Layer Norm (
norm2
): Normalize the input.FeedForward Network (
ff
): Apply the feedforward transformation.Dropout (
drop_shortcut
): Apply dropout.Add Residual (
x + shortcut
): Combine with the input from the first residual path.
The transformer block groups all the networks together and applies some normalization and dropouts to improve the training stability and results. Note how dropouts are done after the use of each network while normalization is applied before.
Moreover, it also uses shortcuts which consists on adding the output of a network with its input. This helps to prevent the vanishing gradient problem by making sure that initial layers contribute "as much" as the last ones.
GPTModel
Shapes have been added as comments to understand better the shapes of matrices:
Purpose and Functionality
Embedding Layers:
Token Embeddings (
tok_emb
): Converts token indices into embeddings. As reminder, these are the weights given to each dimension of each token in the vocabulary.Positional Embeddings (
pos_emb
): Adds positional information to the embeddings to capture the order of tokens. As reminder, these are the weights given to token according to it's position in the text.
Dropout (
drop_emb
): Applied to embeddings for regularisation.Transformer Blocks (
trf_blocks
): Stack ofn_layers
transformer blocks to process embeddings.Final Normalization (
final_norm
): Layer normalization before the output layer.Output Layer (
out_head
): Projects the final hidden states to the vocabulary size to produce logits for prediction.