Open in app
Search Write
Building LLaMA 3 From Scratch
with Python
Code Your Own Billion Parameter LLM
Fareed Khan · Following
Published in Level Up Coding · 29 min read · 20 hours ago
178 1
LLaMA 3 is one of the most promising open-source model after Mistral,
solving a wide range of tasks. I previously wrote a blog on Medium about
creating an LLM with over 2.3 million parameters from scratch using the
LLaMA architecture. Now that LLaMA-3 is released, we will recreate it in a
simpler manner.
We won’t be using a GPU for this blog, but you’ll need at least 17 GB of RAM
because we are going to load some files that are more than 15 GB in size. If
this is an issue for you, you can use Kaggle as a solution. Since we don’t need
a GPU, Kaggle offers 30 GB of RAM while using only CPU cores as an
accelerator.
To avoid copying and pasting the code from this blog, here is the GitHub
Repository containing the notebook file with all the code and information:
GitHub - FareedKhan-dev/Building-llama3-from-scratch: LLaMA
3 is one of the most promising…
LLaMA 3 is one of the most promising open-source model after
Mistral, we will recreate it's architecture in a simpler…
github.com
Here is the blog link which guides you on how to create a 2.3+ million
parameter LLM from scratch:
Building a Million-Parameter LLM from Scratch Using Python
A Step-by-Step Guide to Replicating LLaMA Architecture
levelup.gitconnected.com
Table of Contents
1. Prerequisites
2. Difference between LLaMA 2 and LLaMA 3
3. Understanding the Transformer Architecture of LLaMA 3
∘ Pre-normalization Using RMSNorm
∘ SwiGLU Activation Function
∘ Rotary Embeddings (RoPE)
∘ Byte Pair Encoding (BPE) Algorithm
4. Setting the Stage
5. Understanding the File Structure
6. Tokenizing our input data
7. Creating Embedding for each Token
8. Normalization Using RMSNorm
9. Attention Heads (Query, Key, Values)
10. Implementing RoPE
11. Implementing Self Attention
12. Implementing Multi-Head Attention
13. Implementing SwiGLU Activation Function
14. Merging everything
15. Generating the Output
Prerequisites
The good part is we won’t be using object-oriented programming (OOP)
coding, just plain Python programming. However, you should have a basic
understanding of neural networks and Transformer architecture. These are
the only two prerequisites needed to follow along with the blog.
Topic Link
Transformer Theory Video Link
Neural Networks Theory Video Link
Python basics Video Link
guide.md hosted with ❤ by GitHub view raw
Difference between LLaMA 2 and LLaMA 3
Before looking into the technical details, the first thing you must know is
that the entire architecture of LLaMA 3 is the same as LLaMA 2. So, if you
haven’t gone through the technical details of LLaMA 3 yet, it won’t be a
problem for you to follow this blog. Even if you don’t have an understanding
of LLaMA 2 architecture, don’t worry, we will also look at a high-level
overview of its technical details. This blog is designed for you either way.
Here are some key points about LLaMA 2 and LLaMA 3. If you are already
familiar with their architecture:
FEATURE Llama 3 Llama 2
Tiktoken (developed by
Tokenizer SentencePiece
OpenAI)
Number of
8B, 70B 70B, 13B, 7B
Parameters
Training Data 15T tokens 2.2T tokens
Context Length 8192 tokens 4096 tokens
Attention Mechanism Grouped-query attention Grouped-query attention
Fine-Tuned Models Yes Yes
Better than Llama 2 on all Better than Llama 1 on most
Performance
benchmarks benchmarks
Computational
Very high (70B model) Very high (70B model)
Requirements
Availability Open source Open source
Reinforcement
learning from human Yes Yes
feedback
Number of languages
30 languages 20 languages
supported
Best for more demanding
Good for more demanding
tasks, such as reasoning,
Suitable for tasks, such as reasoning,
coding, and proficiency
coding, and proficiency tests
tests
llama_2_vs_3.md hosted with ❤ by GitHub view raw
From apps4rent.co
Understanding the Transformer Architecture of LLaMA 3
Understanding the architecture of LLaMA 3 is important before diving into
coding it. For a better visual understanding, here’s a comparison diagram
between the vanilla Transformer, LLaMA 2/3, and Mistral.
From Rajesh Kavadiki
Let’s look into the most important components of LLaMA 3 with a bit more
detail:
1. Pre-normalization Using RMSNorm:
In the LLaMA 3 approach which is the same as LLaMA 2, a technique called
RMSNorm is used for normalizing the input of each transformer sub-layer.
Imagine you’re studying for a big exam, and you have a massive textbook full
of chapters. Each chapter represents a different topic, but some chapters are
more crucial for understanding the subject than others.
Now, before diving into the entire textbook, you decide to evaluate the
importance of each chapter. You don’t want to spend the same amount of
time on every chapter; you want to focus more on the critical ones.
This is where Pre-normalization using RMSNorm comes into play for large
language models (LLMs) like ChatGPT. It’s like assigning a weight to each
chapter based on its significance. Chapters that are fundamental to the
subject get higher weights, while less important ones get lower weights.
So, before going deeply into studying, you adjust your study plan based on
the weighted importance of each chapter. You allocate more time and effort
to the chapters with higher weights, ensuring you grasp the core concepts
thoroughly.
Root Mean Square Layer Normalization Paper (https://arxiv.org/abs/1910.07467)
Similarly, Pre-normalization using RMSNorm helps LLMs prioritize which
parts of the text are more critical for understanding the context and
meaning. It assigns higher weights to essential elements and lower weights
to less crucial ones, ensuring the model focuses its attention where it’s most
needed for accurate comprehension. Interested readers can explore the
detailed implementation of RMSNorm here.
2. SwiGLU Activation Function:
LLaMA introduces the SwiGLU activation function, drawing inspiration from
PaLM.
Imagine you’re a teacher trying to explain a complex topic to your students.
You have a big whiteboard where you write down key points and draw
diagrams to make things clearer. But sometimes, your handwriting might not
be very neat, or your diagrams might not be perfectly drawn. This can make
it harder for your students to understand the material.
Now, imagine if you had a magic pen that automatically adjusted the size and
style of your handwriting based on how important each point is. If
something is really crucial, the pen writes it bigger and clearer, making it
stand out. If it’s less important, the pen writes it smaller, but still legible.
SwiGLU is like that magic pen for large language models (LLMs) like
ChatGPT. Before generating text, SwiGLU adjusts the importance of each
word or phrase based on its relevance to the context. Just like the magic pen
adjusts the size and style of your writing, SwiGLU adjusts the emphasis of
each word or phrase.
SwiGLU: GLU Variants Improve Transformer (https://kikaben.com/swiglu-2020/)
So, when the LLM generates text, it can give more prominence to the
important parts, making them more noticeable and ensuring they contribute
more to the overall understanding of the text. This way, SwiGLU helps LLMs
produce text that’s clearer and easier to understand, much like how the
magic pen helps you create clearer explanations for your students on the
whiteboard. Further details on SwiGLU can be found in the associated paper.
3. Rotary Embeddings (RoPE):
Rotary Embeddings, or RoPE, is a type of position embedding used in
LLaMA 3.
Imagine you’re in a classroom, and you want to assign seats to students for
group discussions. Typically, you might arrange the seats in rows and
columns, with each student having a fixed position. However, in some cases,
you want to create a more dynamic seating arrangement where students can
move around and interact more freely.
ROPE is like a special seating arrangement that allows students to rotate and
change positions while still maintaining their relative positions to each
other. Instead of being fixed in one place, students can now move around in
a circular motion, allowing for more fluid interactions.
In this scenario, each student represents a word or token in a text sequence,
and their position corresponds to their position in the sequence. Just like
how ROPE allows students to rotate and change positions, ROPE allows the
positional embeddings of words in a text sequence to dynamically change
based on their relative positions to each other.
So, when processing text, instead of treating positional embeddings as fixed
and static, ROPE introduces a rotational aspect, allowing for more flexible
representations that capture the dynamic relationships between words in the
sequence. This flexibility helps models like ChatGPT better understand and
generate text that flows naturally and maintains coherence, similar to how a
dynamic seating arrangement fosters more interactive discussions in a
classroom. Those interested in the mathematical details can refer to the
RoPE paper.
4. Byte Pair Encoding (BPE) Algorithm
LLaMA 3 uses Byte Pair Encoding (BPE) from the tiktoken library introduced
by OpenAI, whereas the LLaMA 2 tokenizer BPE is based on the
sentencepiece library. There is a slight difference between them, but first,
let’s learn what BPE actually is.
Let’s start with a simple example. Suppose we have a text corpus with the
words: “ab”, “bc”, “bcd”, and “cde”. We begin by initializing our vocabulary
with all the individual characters in the text corpus, so our initial vocabulary
is {“a”, “b”, “c”, “d”, “e”}.
Next, we calculate the frequency of each character in the text corpus. For
our example, the frequencies are: {“a”: 1, “b”: 3, “c”: 3, “d”: 2, “e”: 1}.
Now, we start the merging process. We repeat the following steps until our
vocabulary reaches the desired size:
1. First, we find the most frequent pair of consecutive characters. In this
case, the most frequent pair is “bc” with a frequency of 2. We then merge
this pair to create a new subword unit “bc”. After merging, we update the
frequency counts to reflect the new subword unit. The updated frequency
is {“a”: 1, “b”: 2, “c”: 2, “d”: 2, “e”: 1, “bc”: 2}. We add the new subword unit
“bc” to our vocabulary, which now becomes {“a”, “b”, “c”, “d”, “e”, “bc”}.
2. We repeat the process. The next most frequent pair is “cd”. We merge “cd”
to form a new subword unit “cd” and update the frequency counts. The
updated frequency is {“a”: 1, “b”: 2, “c”: 1, “d”: 1, “e”: 1, “bc”: 2, “cd”: 2}.
We add “cd” to the vocabulary, resulting in {“a”, “b”, “c”, “d”, “e”, “bc”,
“cd”}.
3. Continuing the process, the next frequent pair is “de”. We merge “de” to
form the subword unit “de” and update the frequency counts to {“a”: 1,
“b”: 2, “c”: 1, “d”: 1, “e”: 0, “bc”: 2, “cd”: 1, “de”: 1}. We add “de” to the
vocabulary, making it {“a”, “b”, “c”, “d”, “e”, “bc”, “cd”, “de”}.
4. Next, we find “ab” as the most frequent pair. We merge “ab” to form the
subword unit “ab” and update the frequency counts to {“a”: 0, “b”: 1, “c”:
1, “d”: 1, “e”: 0, “bc”: 2, “cd”: 1, “de”: 1, “ab”: 1}. We add “ab” to the
vocabulary, which becomes {“a”, “b”, “c”, “d”, “e”, “bc”, “cd”, “de”, “ab”}.
5. Then, the next frequent pair is “bcd”. We merge “bcd” to form the
subword unit “bcd” and update the frequency counts to {“a”: 0, “b”: 0, “c”:
0, “d”: 0, “e”: 0, “bc”: 1, “cd”: 0, “de”: 1, “ab”: 1, “bcd”: 1}. We add “bcd” to
the vocabulary, resulting in {“a”, “b”, “c”, “d”, “e”, “bc”, “cd”, “de”, “ab”,
“bcd”}.
6. Finally, the most frequent pair is “cde”. We merge “cde” to form the
subword unit “cde” and update the frequency counts to {“a”: 0, “b”: 0, “c”:
0, “d”: 0, “e”: 0, “bc”: 1, “cd”: 0, “de”: 0, “ab”: 1, “bcd”: 1, “cde”: 1}. We add
“cde” to the vocabulary, making it {“a”, “b”, “c”, “d”, “e”, “bc”, “cd”, “de”,
“ab”, “bcd”, “cde”}.
This technique can improve the performance of LLMs and handle rare and
out-of-vocabulary words. The big difference between TikToken BPE and
sentencepiece BPE is that TikToken BPE doesn’t always split words into
smaller parts if the whole word is already known. For example, if “hugging”
is in the vocabulary, it stays as one token instead of splitting into
[“hug”,”ging”].
Setting the Stage
We will be working with a small range of Python libraries, but it’s better to
install them to avoid encountering “no module found” errors.
pip install sentencepiece tiktoken torch blobfile matplotlib huggingface_hub
After installing the required libraries, we need to download some files. Since
we’re going to replicate the architecture of llama-3–8B, you must have an
account on HuggingFace. Additionally, since llama-3 is a gated model, you
have to accept their terms and conditions to access model content.
Here are the steps:
1. Create an HuggingFace account from this link
2. Accept the terms and conditions of llama-3–8B from this link
Once you’ve completed both of these steps, Now we have to download some
files. There are two options to do that:
(Option 1: Manual) Go to the llama-3–8B HF directory from this link and
manually download each of these three files.
Downloading LLaMA-3 Configuration Files
(options 2: Coding) We can use the hugging_face library, which we installed
earlier, to download all of these files. However, first, we need to log in to
HuggingFace Hub within our working notebook using our HF Token. You can
create a new token or access it from this link.
# Import the `notebook_login` function from the `huggingface_hub` module.
from huggingface_hub import notebook_login
# Execute the `notebook_login` function to log in to the Hugging Face Hub.
notebook_login()
Once you run this cell it will ask you to enter the token. If there is an error
during login, retry it but make sure to uncheck add token as git credential.
After that, we just need to run a simple Python code to download the three
files that are the backbone of the llama-3–8B architecture.
# Import the necessary function from the huggingface_hub library
from huggingface_hub import hf_hub_download
# Define the repository information
repo_id = "meta-llama/Meta-Llama-3-8B"
subfolder = "original" # Specify the subfolder within the repository
# List of filenames to download
filenames = ["params.json", "tokenizer.model", "consolidated.00.pth"]
# Specify the directory where you want to save the downloaded files
save_directory = "llama-3-8B/" # Replace with your desired path
# Download each file
for filename in filenames:
hf_hub_download(
repo_id=repo_id, # Repository ID
filename=filename, # Name of the file to download
subfolder=subfolder, # Subfolder within the repository
local_dir=save_directory # Directory to save the downloaded file
)
Once all the files are downloaded, we need to import the libraries that we
will be using throughout this blog.
# Tokenization library
import tiktoken
# BPE loading function
from tiktoken.load import load_tiktoken_bpe
# PyTorch library
import torch
# JSON handling
import json
Next, we need to understand what each file will be used for.
Understanding the File Structure
Since we’re aiming for an exact replication of llama-3, it means our input text
must yield a meaningful output. For example, if our input is “the color of the
sun is?”, the output must be “white”. Achieving this requires training our
LLM on a large dataset, which demands high computation power, making it
unfeasible for us.
However, Meta has publicly released their llama-3 architecture files, or in
more complex terms, their pretrained weights, for use. We’ve just
downloaded these files, allowing us to replicate their architecture without
the need for training or a large dataset. Everything is already prepared, we
just have to use the right components in the right places.
Take a look at each of these files and their importance:
tokenizer.model — As we discussed earlier, LLaMA-3 uses the Byte Pair
Encoding (BPE) tokenizer from tiktoken, trained on a dataset with 15 trillion
tokens — 7 times larger than the dataset used for LLaMA-2. Let’s load this file
and see what it holds.
# Loading the tokenizer from llama-3-8B
tokenizer_model = load_tiktoken_bpe("tokenizer.model")
# Get the length of the tokenizer model
len(tokenizer_model)
# OUTPUT: 128000
# Get the type of the `tokenizer_model` object.
type(tokenizer_model)
# OUTPUT: dictionary
The length attribute shows the total vocabulary size, which is the unique
number of characters in the training data. The type of tokenizer_model is a
dictionary.
# Printing the first 10 items of tokenizer model
dict(list(tokenizer_model.items())[5600:5610])
#### OUTPUT ####
{
b'mitted': 5600,
b" $('#": 5601,
b' saw': 5602,
b' approach': 5603,
b'ICE': 5604,
b' saying': 5605,
b' anyone': 5606,
b'meta': 5607,
b'SD': 5608,
b' song': 5609
}
#### OUTPUT ####
When we print 10 random items from it, you will see strings that have been
formed using the BPE algorithm, similar to the example we discussed earlier.
Keys representing Byte sequences from BPE training, while values represent
merge ranks based on frequency.
consolidated.00.pth — contains the learned parameters (weights) of Llama-
3–8B. These parameters include information about how the model
understands and processes language, such as how it represents tokens,
computes attention, performs feed-forward transformations, and normalizes
its outputs.
# Loading a PyTorch model of LLaMA-3-8B
model = torch.load("consolidated.00.pth")
# printing first 11 layers of the architecture
list(model.keys())[:11]
#### OUTPUT ####
[
'tok_embeddings.weight',
'layers.0.attention.wq.weight',
'layers.0.attention.wk.weight',
'layers.0.attention.wv.weight',
'layers.0.attention.wo.weight',
'layers.0.feed_forward.w1.weight',
'layers.0.feed_forward.w3.weight',
'layers.0.feed_forward.w2.weight',
'layers.0.attention_norm.weight',
'layers.0.ffn_norm.weight',
'layers.1.attention.wq.weight',
]
#### OUTPUT ####
If you’re familiar with transformer architecture, you would have known
about query, key matrices, and more. Later, we will be using these
layers/weights to create such matrices within the architecture of Llama-3.
params.json— contains various parameter values, such as:
# Opening the parameters JSON file
with open("params.json", "r") as f:
config = json.load(f)
# Printing the content
print(config)
#### OUTPUT ####
{
'dim': 4096,
'n_layers': 32,
'n_heads': 32,
'n_kv_heads': 8,
'vocab_size': 128256,
'multiple_of': 1024,
'ffn_dim_multiplier': 1.3,
'norm_eps': 1e-05,
'rope_theta': 500000.0
}
#### OUTPUT ####
These values will help us replicate the Llama-3 architecture by specifying
details like the number of heads, dimension of the embedding vector and
more.
Let’s store these values so we can use them later.
# Dimension
dim = config["dim"]
# Layers
n_layers = config["n_layers"]
# Heads
n_heads = config["n_heads"]
# KV_heads
n_kv_heads = config["n_kv_heads"]
# Vocabulary
vocab_size = config["vocab_size"]
# Multiple
multiple_of = config["multiple_of"]
# Multiplier
ffn_dim_multiplier = config["ffn_dim_multiplier"]
# Epsilon
norm_eps = config["norm_eps"]
# RoPE
rope_theta = torch.tensor(config["rope_theta"])
Now that we have the tokenizer model, architecture model containing
weights, and configuration parameters, let’s start coding our own Llama-3
from scratch.
Tokenizing our input data
The very first thing we need to perform is to convert our input text to tokens,
and to achieve this we first have to create some special tokens which are
necessary to provide structured markers within the tokenized text, enabling
the tokenizer to recognize and handle specific conditions or instructions.
special_tokens = [
"<|begin_of_text|>", # Marks the beginning of a text sequence.
"<|end_of_text|>", # Marks the end of a text sequence.
"<|reserved_special_token_0|>", # Reserved for future use.
"<|reserved_special_token_1|>", # Reserved for future use.
"<|reserved_special_token_2|>", # Reserved for future use.
"<|reserved_special_token_3|>", # Reserved for future use.
"<|start_header_id|>", # Indicates the start of a header ID.
"<|end_header_id|>", # Indicates the end of a header ID.
"<|reserved_special_token_4|>", # Reserved for future use.
"<|eot_id|>", # Marks the end of a turn (in a conversational context).
] + [f"<|reserved_special_token_{i}|>" for i in range(5, 256 - 5)] # A large se
Next we define the rules for splitting text into tokens by specifying different
patterns to match various types of substrings in the input text. Here’s how
we can do that.
# patterns based on which text will be break into tokens
tokenize_breaker = r"(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\r\n\p{L}\p{N}]?\p{L}+|\p{N}
It can extracts words, contractions, numbers (up to three digits), and
sequences of non-whitespace characters from the input text, you can
customize it based on your requirements.
We need to code a simple tokenizer function using the TikToken BPE, which
takes three inputs: tokenizer_model, tokenize_breaker, and special_tokens.
This function will encode/decode our input text accordingly.
# Initialize tokenizer with specified parameters
tokenizer = tiktoken.Encoding(
# make sure to set path to tokenizer.model file
name = "tokenizer.model",
# Define tokenization pattern string
pat_str = tokenize_breaker,
# Assign BPE mergeable ranks from tokenizer_model of LLaMA-3
mergeable_ranks = tokenizer_model,
# Set special tokens with indices
special_tokens={token: len(tokenizer_model) + i for i, token in enumerate(sp
)
# Encode "hello world!" and decode tokens to string
tokenizer.decode(tokenizer.encode("hello world!"))
#### OUTPUT ####
hello world!
#### OUTPUT ####
To verify that our encoder function methods work correctly, we pass “Hello
World” into it. First, it encodes the text, transforming it into numerical
values. Then, it decodes it back to text, resulting in “hello world!”. This
confirms that the function is working correctly. Let’s tokenize our input.
# input prompt
prompt = "the answer to the ultimate question of life, the universe, and everyth
# Encode the prompt using the tokenizer and prepend a special token (128000)
tokens = [128000] + tokenizer.encode(prompt)
print(tokens) # Print the encoded tokens
# Convert the list of tokens into a PyTorch tensor
tokens = torch.tensor(tokens)
# Decode each token back into its corresponding string
prompt_split_as_tokens = [tokenizer.decode([token.item()]) for token in tokens]
print(prompt_split_as_tokens) # Print the decoded tokens
#### OUTPUT ####
[128000, 1820, 4320, 311, ... ]
['<|begin_of_text|>', 'the', ' answer', ' to', ... ]
#### OUTPUT ####
We encoded our input text “the answer to the ultimate question of life, the
universe, and everything is ” starting with a special token.
Creating Embedding for each Token
If we check the length of our input vector, it would be:
# checking dimension of input vector
len(tokens)
#### OUTPUT ####
17
#### OUTPUT ####
# checking dimension of embedding vector from llama-3 architecture
print(dim)
#### OUTPUT ####
4096
#### OUTPUT ####
Our input vectors, which are currently of dimension (17x1), need to be
transformed into embeddings for each tokenized word. This means our
(17x1) tokens will become (17x4096), where each token has a corresponding
embedding of length 4096.
# Define embedding layer with vocab size and embedding dimension
embedding_layer = torch.nn.Embedding(vocab_size, dim)
# Copy pre-trained token embeddings to the embedding layer
embedding_layer.weight.data.copy_(model["tok_embeddings.weight"])
# Get token embeddings for given tokens, converting to torch.bfloat16 format
token_embeddings_unnormalized = embedding_layer(tokens).to(torch.bfloat16)
# Print shape of resulting token embeddings
token_embeddings_unnormalized.shape
#### OUTPUT ####
torch.Size([17, 4096])
#### OUTPUT ####
These embeddings are not normalized, and it will have a serious effect if we
don’t normalize them. In the next section, we will perform normalization on
our input vectors.
Normalization Using RMSNorm
We will normalize the input vectors using the same formula we have seen
earlier for RMSNorm to ensure our inputs are normalized.
Root Mean Square Layer Normalization Paper (https://arxiv.org/abs/1910.07467)
# Calculating RMSNorm
def rms_norm(tensor, norm_weights):
# Calculate the mean of the square of tensor values along the last dimension
squared_mean = tensor.pow(2).mean(-1, keepdim=True)
# Add a small value to avoid division by zero
normalized = torch.rsqrt(squared_mean + norm_eps)
# Multiply normalized tensor by the provided normalization weights
return (tensor * normalized) * norm_weights
We will use the attention weights from layers_0 to normalize our
unnormalized embeddings. The reason for using layer_0 is that we are now
creating the first layer of our LLaMA-3 transformer architecture.
# using RMS normalization and provided normalization weights
token_embeddings = rms_norm(token_embeddings_unnormalized,
model["layers.0.attention_norm.weight"])
# Print the shape of the resulting token embeddings
token_embeddings.shape
#### OUTPUT ####
torch.Size([17, 4096])
#### OUTPUT ####
You may already know that the dimension won’t change because we are only
normalizing the vectors and nothing else.
Attention Heads (Query, Key, Values)
first, let’s load the query, key, value and output vectors from the model.
# Print the shapes of different weights
print(
# Query weight shape
model["layers.0.attention.wq.weight"].shape,
# Key weight shape
model["layers.0.attention.wk.weight"].shape,
# Value weight shape
model["layers.0.attention.wv.weight"].shape,
# Output weight shape
model["layers.0.attention.wo.weight"].shape
)
#### OUTPUT ####
torch.Size([4096, 4096]) # Query weight dimension
torch.Size([1024, 4096]) # Key weight dimension
torch.Size([1024, 4096]) # Value weight dimension
torch.Size([4096, 4096]) # Output weight dimension
#### OUTPUT ####
The dimensions indicate that the model weights we downloaded are not for
each head individually but for multiple attention heads due to implementing
a parallel approach/training. However, we can unwrap these matrices to
make them available for a single head only.
# Retrieve query weight for the first layer of attention
q_layer0 = model["layers.0.attention.wq.weight"]
# Calculate dimension per head
head_dim = q_layer0.shape[0] // n_heads
# Reshape query weight to separate heads
q_layer0 = q_layer0.view(n_heads, head_dim, dim)
# Print the shape of the reshaped query weight tensor
q_layer0.shape
#### OUTPUT ####
torch.Size([32, 128, 4096])
#### OUTPUT ####
Here, 32 is the number of attention heads in Llama-3, 128 is the size of the
query vector, and 4096 is the size of the token embedding.
We can access the query weight matrix of the first head of the first layer
using:
# Extract the query weight for the first head of the first layer of attention
q_layer0_head0 = q_layer0[0]
# Print the shape of the extracted query weight tensor for the first head
q_layer0_head0.shape
#### OUTPUT ####
torch.Size([128, 4096])
#### OUTPUT ####
To find the query vector for each token, we multiply the query weights with
the token embedding.
# Matrix multiplication: token embeddings with transpose of query weight for fir
q_per_token = torch.matmul(token_embeddings, q_layer0_head0.T)
# Shape of resulting tensor: queries per token
q_per_token.shape
#### OUTPUT ####
torch.Size([17, 128])
#### OUTPUT ####
The query vectors don’t inherently know their position in the prompt, so
we’ll use RoPE to make them aware of it.
Implementing RoPE
We split the query vectors into pairs and then apply a rotational angle shift to
each pair.
# Convert queries per token to float and split into pairs
q_per_token_split_into_pairs = q_per_token.float().view(q_per_token.shape[0], -1
# Print the shape of the resulting tensor after splitting into pairs
q_per_token_split_into_pairs.shape
#### OUTPUT ####
torch.Size([17, 64, 2])
#### OUTPUT ####
We have a vector of size [17x64x2], which represents the 128-length queries
split into 64 pairs for each token in the prompt. Each pair will be rotated by
m*theta, where m is the position of the token for which we are rotating the
query.
We’ll use the dot product of complex numbers to rotate a vector.
# Generate values from 0 to 1 split into 64 parts
zero_to_one_split_into_64_parts = torch.tensor(range(64))/64
# Print the resulting tensor
zero_to_one_split_into_64_parts
#### OUTPUT ####
tensor([0.0000, 0.0156, 0.0312, 0.0469, 0.0625, 0.0781, 0.0938, 0.1094, 0.1250,
0.1406, 0.1562, 0.1719, 0.1875, 0.2031, 0.2188, 0.2344, 0.2500, 0.2656,
0.2812, 0.2969, 0.3125, 0.3281, 0.3438, 0.3594, 0.3750, 0.3906, 0.4062,
0.4219, 0.4375, 0.4531, 0.4688, 0.4844, 0.5000, 0.5156, 0.5312, 0.5469,
0.5625, 0.5781, 0.5938, 0.6094, 0.6250, 0.6406, 0.6562, 0.6719, 0.6875,
0.7031, 0.7188, 0.7344, 0.7500, 0.7656, 0.7812, 0.7969, 0.8125, 0.8281,
0.8438, 0.8594, 0.8750, 0.8906, 0.9062, 0.9219, 0.9375, 0.9531, 0.9688,
0.9844])
#### OUTPUT ####
After the splitting step, we are going to calculate the frequency of it.
# Calculate frequencies using a power operation
freqs = 1.0 / (rope_theta ** zero_to_one_split_into_64_parts)
# Display the resulting frequencies
freqs
#### OUTPUT ####
tensor([1.0000e+00, 8.1462e-01, 6.6360e-01, 5.4058e-01, 4.4037e-01, 3.5873e-01,
2.9223e-01, 2.3805e-01, 1.9392e-01, 1.5797e-01, 1.2869e-01, 1.0483e-01,
8.5397e-02, 6.9566e-02, 5.6670e-02, 4.6164e-02, 3.7606e-02, 3.0635e-02,
2.4955e-02, 2.0329e-02, 1.6560e-02, 1.3490e-02, 1.0990e-02, 8.9523e-03,
7.2927e-03, 5.9407e-03, 4.8394e-03, 3.9423e-03, 3.2114e-03, 2.6161e-03,
2.1311e-03, 1.7360e-03, 1.4142e-03, 1.1520e-03, 9.3847e-04, 7.6450e-04,
6.2277e-04, 5.0732e-04, 4.1327e-04, 3.3666e-04, 2.7425e-04, 2.2341e-04,
1.8199e-04, 1.4825e-04, 1.2077e-04, 9.8381e-05, 8.0143e-05, 6.5286e-05,
5.3183e-05, 4.3324e-05, 3.5292e-05, 2.8750e-05, 2.3420e-05, 1.9078e-05,
1.5542e-05, 1.2660e-05, 1.0313e-05, 8.4015e-06, 6.8440e-06, 5.5752e-06,
4.5417e-06, 3.6997e-06, 3.0139e-06, 2.4551e-06])
#### OUTPUT ####
Now, with a complex number for each token’s query element, we convert our
queries into complex numbers and then rotate them based on their position
using dot product.
# Convert queries per token to complex numbers
q_per_token_as_complex_numbers = torch.view_as_complex(q_per_token_split_into_pa
q_per_token_as_complex_numbers.shape
# Output: torch.Size([17, 64])
# Calculate frequencies for each token using outer product of arange(17) and fre
freqs_for_each_token = torch.outer(torch.arange(17), freqs)
# Calculate complex numbers from frequencies_for_each_token using polar coordina
freqs_cis = torch.polar(torch.ones_like(freqs_for_each_token), freqs_for_each_to
# Rotate complex numbers by frequencies
q_per_token_as_complex_numbers_rotated = q_per_token_as_complex_numbers * freqs_
q_per_token_as_complex_numbers_rotated.shape
# Output: torch.Size([17, 64])
After obtaining the rotated vector, we can revert back to our original queries
as pairs by viewing the complex numbers as real numbers again.
# Convert rotated complex numbers back to real numbers
q_per_token_split_into_pairs_rotated = torch.view_as_real(q_per_token_as_complex
# Print the shape of the resulting tensor
q_per_token_split_into_pairs_rotated.shape
#### OUTPUT ####
torch.Size([17, 64, 2])
#### OUTPUT ####
The rotated pairs are now merged, resulting in a new query vector (rotated
query vector) that has the shape [17x128], where 17 is the number of tokens
and 128 is the dimension of the query vector.
# Reshape rotated token queries to match the original shape
q_per_token_rotated = q_per_token_split_into_pairs_rotated.view(q_per_token.shap
# Print the shape of the resulting tensor
q_per_token_rotated.shape
#### OUTPUT ####
torch.Size([17, 128])
#### OUTPUT ####
For keys, the process is similar, but keep in mind that key vectors are also
128-dimensional. Keys have only 1/4th the number of weights as queries
because they are shared across 4 heads at a time to minimize computations.
Keys are also rotated to include positional information, similar to queries.
# Extract the weight tensor for the attention mechanism's key in the first layer
k_layer0 = model["layers.0.attention.wk.weight"]
# Reshape key weight for the first layer of attention to separate heads
k_layer0 = k_layer0.view(n_kv_heads, k_layer0.shape[0] // n_kv_heads, dim)
# Print the shape of the reshaped key weight tensor
k_layer0.shape # Output: torch.Size([8, 128, 4096])
# Extract the key weight for the first head of the first layer of attention
k_layer0_head0 = k_layer0[0]
# Print the shape of the extracted key weight tensor for the first head
k_layer0_head0.shape # Output: torch.Size([128, 4096])
# Calculate key per token by matrix multiplication
k_per_token = torch.matmul(token_embeddings, k_layer0_head0.T)
# Print the shape of the resulting tensor representing keys per token
k_per_token.shape # Output: torch.Size([17, 128])
# Split key per token into pairs and convert to float
k_per_token_split_into_pairs = k_per_token.float().view(k_per_token.shape[0], -1
# Print the shape of the resulting tensor after splitting into pairs
k_per_token_split_into_pairs.shape # Output: torch.Size([17, 64, 2])
# Convert key per token to complex numbers
k_per_token_as_complex_numbers = torch.view_as_complex(k_per_token_split_into_pa
# Print the shape of the resulting tensor representing key per token as complex
k_per_token_as_complex_numbers.shape # Output: torch.Size([17, 64])
# Rotate complex key per token by frequencies
k_per_token_split_into_pairs_rotated = torch.view_as_real(k_per_token_as_complex
# Print the shape of the rotated complex key per token
k_per_token_split_into_pairs_rotated.shape # Output: torch.Size([17, 64, 2])
# Reshape rotated key per token to match the original shape
k_per_token_rotated = k_per_token_split_into_pairs_rotated.view(k_per_token.shap
# Print the shape of the rotated key per token
k_per_token_rotated.shape # Output: torch.Size([17, 128])
We now have the rotated queries and keys for each token, with each being of
size [17x128].
Implementing Self Attention
Multiplying the query and key matrices will give us a score that maps each
token to another. This score indicates the relationship between each token’s
query and key.
# Calculate query-key dot products per token
qk_per_token = torch.matmul(q_per_token_rotated, k_per_token_rotated.T) / (head_
# Print the shape of the resulting tensor representing query-key dot products pe
qk_per_token.shape
#### OUTPUT ####
torch.Size([17, 17])
#### OUTPUT ####
[17x17] Shape represents attention score (qk_per_token) where 17 is the
number of tokens in the prompt.
We need to mask the query-key scores. During training, future token query-
key scores are masked because we only learn to predict tokens using past
tokens. As a result, during inference, we set the future tokens to zero.
# Create a mask tensor filled with negative infinity values
mask = torch.full((len(tokens), len(tokens)), float("-inf"), device=tokens.devic
# Set upper triangular part of the mask tensor to negative infinity
mask = torch.triu(mask, diagonal=1)
# Print the resulting mask tensor
mask
#### OUTPUT ####
tensor([[0., -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -
[0., 0., -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -in
[0., 0., 0., -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf,
[0., 0., 0., 0., -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -
[0., 0., 0., 0., 0., -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -in
[0., 0., 0., 0., 0., 0., -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf,
[0., 0., 0., 0., 0., 0., 0., -inf, -inf, -inf, -inf, -inf, -inf, -inf, -
[0., 0., 0., 0., 0., 0., 0., 0., -inf, -inf, -inf, -inf, -inf, -inf, -in
[0., 0., 0., 0., 0., 0., 0., 0., 0., -inf, -inf, -inf, -inf, -inf, -inf,
[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., -inf, -inf, -inf, -inf, -inf, -
[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., -inf, -inf, -inf, -inf, -in
[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., -inf, -inf, -inf, -inf,
[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., -inf, -inf, -inf, -
[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., -inf, -inf, -in
[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., -inf, -inf]
[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., -inf],
[0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]])
#### OUTPUT ####
Now, we have to apply a mask to the query-key per token vector. Additionally,
we want to apply softmax on top of it to convert the output scores into
probabilities. This helps in selecting the most likely token or sequence of
tokens from the model’s vocabulary, making the model’s predictions more
interpretable and suitable for tasks like language generation and
classification.
# Add the mask to the query-key dot products per token
qk_per_token_after_masking = qk_per_token + mask
# Apply softmax along the second dimension after masking
qk_per_token_after_masking_after_softmax = torch.nn.functional.softmax(qk_per_to
For the value matrix, which marks the end of the self-attention part, similar
to keys, value weights are also shared across every 4 attention heads to save
computation. As a result, the shape of the value weight matrix is
[8x128x4096].
# Retrieve the value weight for the first layer of attention
v_layer0 = model["layers.0.attention.wv.weight"]
# Reshape value weight for the first layer of attention to separate heads
v_layer0 = v_layer0.view(n_kv_heads, v_layer0.shape[0] // n_kv_heads, dim)
# Print the shape of the reshaped value weight tensor
v_layer0.shape
#### OUTPUT ####
torch.Size([8, 128, 4096])
#### OUTPUT ####
Similar to the query and key matrices, the value matrix for the first layer and
first head can be obtained using:
# Extract the value weight for the first head of the first layer of attention
v_layer0_head0 = v_layer0[0]
# Print the shape of the extracted value weight tensor for the first head
v_layer0_head0.shape
#### OUTPUT ####
torch.Size([128, 4096])
#### OUTPUT ####
Using the value weights, we compute the attention values for each token,
resulting in a matrix of size [17x128]. Here, 17 denotes the number of tokens
in the prompt, and 128 indicates the dimension of the value vector for each
token.
# Calculate value per token by matrix multiplication
v_per_token = torch.matmul(token_embeddings, v_layer0_head0.T)
# Print the shape of the resulting tensor representing values per token
v_per_token.shape
#### OUTPUT ####
torch.Size([17, 128])
#### OUTPUT ####
To obtain the resulting attention matrix, we can perform the following
multiplication:
# Calculate QKV attention by matrix multiplication
qkv_attention = torch.matmul(qk_per_token_after_masking_after_softmax, v_per_tok
# Print the shape of the resulting tensor
qkv_attention.shape
#### OUTPUT ####
torch.Size([17, 128])
#### OUTPUT ####
We now have the attention values for the first layer and first head or in other
words self attention.
Implementing Multi-Head Attention
A loop will be executed to perform the same calculations as above, but for
every head in the first layer.
# Store QKV attention for each head in a list
qkv_attention_store = []
# Iterate through each head
for head in range(n_heads):
# Extract query, key, and value weights for the current head
q_layer0_head = q_layer0[head]
k_layer0_head = k_layer0[head//4] # Key weights are shared across 4 heads
v_layer0_head = v_layer0[head//4] # Value weights are shared across 4 heads
# Calculate query per token by matrix multiplication
q_per_token = torch.matmul(token_embeddings, q_layer0_head.T)
# Calculate key per token by matrix multiplication
k_per_token = torch.matmul(token_embeddings, k_layer0_head.T)
# Calculate value per token by matrix multiplication
v_per_token = torch.matmul(token_embeddings, v_layer0_head.T)
# Split query per token into pairs and rotate them
q_per_token_split_into_pairs = q_per_token.float().view(q_per_token.shape[0]
q_per_token_as_complex_numbers = torch.view_as_complex(q_per_token_split_int
q_per_token_split_into_pairs_rotated = torch.view_as_real(q_per_token_as_com
q_per_token_rotated = q_per_token_split_into_pairs_rotated.view(q_per_token.
# Split key per token into pairs and rotate them
k_per_token_split_into_pairs = k_per_token.float().view(k_per_token.shape[0]
k_per_token_as_complex_numbers = torch.view_as_complex(k_per_token_split_int
k_per_token_split_into_pairs_rotated = torch.view_as_real(k_per_token_as_com
k_per_token_rotated = k_per_token_split_into_pairs_rotated.view(k_per_token.
# Calculate query-key dot products per token
qk_per_token = torch.matmul(q_per_token_rotated, k_per_token_rotated.T) / (1
# Create a mask tensor filled with negative infinity values
mask = torch.full((len(tokens), len(tokens)), float("-inf"), device=tokens.d
# Set upper triangular part of the mask tensor to negative infinity
mask = torch.triu(mask, diagonal=1)
# Add the mask to the query-key dot products per token
qk_per_token_after_masking = qk_per_token + mask
# Apply softmax along the second dimension after masking
qk_per_token_after_masking_after_softmax = torch.nn.functional.softmax(qk_pe
# Calculate QKV attention by matrix multiplication
qkv_attention = torch.matmul(qk_per_token_after_masking_after_softmax, v_per
# Store QKV attention for the current head
qkv_attention_store.append(qkv_attention)
# Print the number of QKV attentions stored
len(qkv_attention_store)
#### OUTPUT ####
32
#### OUTPUT ####
Now that the QKV attention matrix for all 32 heads in the first layer is
obtained, all attention scores will be merged into one large matrix of size
[17x4096].
# Concatenate QKV attentions from all heads along the last dimension
stacked_qkv_attention = torch.cat(qkv_attention_store, dim=-1)
# Print the shape of the resulting tensor
stacked_qkv_attention.shape
#### OUTPUT ####
torch.Size([17, 4096])
#### OUTPUT ####
One of the last steps for layer 0 attention is to multiply the weight matrix
with the stacked QKV matrix.
# Calculate the embedding delta by matrix multiplication with the output weight
embedding_delta = torch.matmul(stacked_qkv_attention, model["layers.0.attention.
# Print the shape of the resulting tensor
embedding_delta.shape
#### OUTPUT ####
torch.Size([17, 4096])
#### OUTPUT ####
We now have the change in the embedding values after attention, which
should be added to the original token embeddings.
# Add the embedding delta to the unnormalized token embeddings to get the final
embedding_after_edit = token_embeddings_unnormalized + embedding_delta
# Print the shape of the resulting tensor
embedding_after_edit.shape
#### OUTPUT ####
torch.Size([17, 4096])
#### OUTPUT ####
The change in embeddings is normalized, followed by running it through a
feedforward neural network.
# Normalize edited embeddings using root mean square normalization and provided
embedding_after_edit_normalized = rms_norm(embedding_after_edit, model["layers.0
# Print the shape of resulting normalized embeddings
embedding_after_edit_normalized.shape
#### OUTPUT ####
torch.Size([17, 4096])
#### OUTPUT ####
Implementing SwiGLU Activation Function
Given our familiarity with the SwiGLU activation function from the previous
section, we will apply the equation we studied earlier here.
SwiGLU: GLU Variants Improve Transformer (https://kikaben.com/swiglu-2020/)
# Retrieve weights for feedforward layer
w1 = model["layers.0.feed_forward.w1.weight"]
w2 = model["layers.0.feed_forward.w2.weight"]
w3 = model["layers.0.feed_forward.w3.weight"]
# Perform operations for feedforward layer
output_after_feedforward = torch.matmul(torch.functional.F.silu(torch.matmul(emb
# Print the shape of the resulting tensor after feedforward
output_after_feedforward.shape
#### OUTPUT ####
torch.Size([17, 4096])
#### OUTPUT ####
Merging everything
Now that everything is ready, we need to merge our code to generate 31
more layers.
# Initialize final embedding with unnormalized token embeddings
final_embedding = token_embeddings_unnormalized
# Iterate through each layer
for layer in range(n_layers):
# Initialize list to store QKV attentions for each head
qkv_attention_store = []
# Normalize the final embedding using root mean square normalization and wei
layer_embedding_norm = rms_norm(final_embedding, model[f"layers.{layer}.atte
# Retrieve query, key, value, and output weights for the attention mechanism
q_layer = model[f"layers.{layer}.attention.wq.weight"]
q_layer = q_layer.view(n_heads, q_layer.shape[0] // n_heads, dim)
k_layer = model[f"layers.{layer}.attention.wk.weight"]
k_layer = k_layer.view(n_kv_heads, k_layer.shape[0] // n_kv_heads, dim)
v_layer = model[f"layers.{layer}.attention.wv.weight"]
v_layer = v_layer.view(n_kv_heads, v_layer.shape[0] // n_kv_heads, dim)
w_layer = model[f"layers.{layer}.attention.wo.weight"]
# Iterate through each head
for head in range(n_heads):
# Extract query, key, and value weights for the current head
q_layer_head = q_layer[head]
k_layer_head = k_layer[head//4] # Key weights are shared across 4 heads
v_layer_head = v_layer[head//4] # Value weights are shared across 4 hea
# Calculate query per token by matrix multiplication
q_per_token = torch.matmul(layer_embedding_norm, q_layer_head.T)
# Calculate key per token by matrix multiplication
k_per_token = torch.matmul(layer_embedding_norm, k_layer_head.T)
# Calculate value per token by matrix multiplication
v_per_token = torch.matmul(layer_embedding_norm, v_layer_head.T)
# Split query per token into pairs and rotate them
q_per_token_split_into_pairs = q_per_token.float().view(q_per_token.shap
q_per_token_as_complex_numbers = torch.view_as_complex(q_per_token_split
q_per_token_split_into_pairs_rotated = torch.view_as_real(q_per_token_as
q_per_token_rotated = q_per_token_split_into_pairs_rotated.view(q_per_to
# Split key per token into pairs and rotate them
k_per_token_split_into_pairs = k_per_token.float().view(k_per_token.shap
k_per_token_as_complex_numbers = torch.view_as_complex(k_per_token_split
k_per_token_split_into_pairs_rotated = torch.view_as_real(k_per_token_as
k_per_token_rotated = k_per_token_split_into_pairs_rotated.view(k_per_to
# Calculate query-key dot products per token
qk_per_token = torch.matmul(q_per_token_rotated, k_per_token_rotated.T)
# Create a mask tensor filled with negative infinity values
mask = torch.full((len(token_embeddings_unnormalized), len(token_embeddi
# Set upper triangular part of the mask tensor to negative infinity
mask = torch.triu(mask, diagonal=1)
# Add the mask to the query-key dot products per token
qk_per_token_after_masking = qk_per_token + mask
# Apply softmax along the second dimension after masking
qk_per_token_after_masking_after_softmax = torch.nn.functional.softmax(q
# Calculate QKV attention by matrix multiplication
qkv_attention = torch.matmul(qk_per_token_after_masking_after_softmax, v
# Store QKV attention for the current head
qkv_attention_store.append(qkv_attention)
# Concatenate QKV attentions from all heads along the last dimension
stacked_qkv_attention = torch.cat(qkv_attention_store, dim=-1)
# Calculate embedding delta by matrix multiplication with the output weight
embedding_delta = torch.matmul(stacked_qkv_attention, w_layer.T)
# Add the embedding delta to the current embedding to get the edited embeddi
embedding_after_edit = final_embedding + embedding_delta
# Normalize the edited embedding using root mean square normalization and we
embedding_after_edit_normalized = rms_norm(embedding_after_edit, model[f"lay
# Retrieve weights for the feedforward layer
w1 = model[f"layers.{layer}.feed_forward.w1.weight"]
w2 = model[f"layers.{layer}.feed_forward.w2.weight"]
w3 = model[f"layers.{layer}.feed_forward.w3.weight"]
# Perform operations for the feedforward layer
output_after_feedforward = torch.matmul(torch.functional.F.silu(torch.matmul
# Update the final embedding with the edited embedding plus the output from
final_embedding = embedding_after_edit + output_after_feedforward
Generating the Output
We now have the final embedding, representing the model’s guess for the
next token. Its shape is the same as regular token embeddings, [17x4096],
with 17 tokens and an embedding dimension of 4096.
# Normalize the final embedding using root mean square normalization and provide
final_embedding = rms_norm(final_embedding, model["norm.weight"])
# Print the shape of the resulting normalized final embedding
final_embedding.shape
#### OUTPUT ####
torch.Size([17, 4096])
#### OUTPUT ####
Now we can decode the embedding into the token value.
# Print the shape of the output weight tensor
model["output.weight"].shape
#### OUTPUT ####
torch.Size([128256, 4096])
#### OUTPUT ####
To predict the next value, we utilize the embedding of the last token.
# Calculate logits by matrix multiplication between the final embedding and the
logits = torch.matmul(final_embedding[-1], model["output.weight"].T)
# Print the shape of the resulting logits tensor
logits.shape
#### OUTPUT ####
torch.Size([128256])
#### OUTPUT ####
# Find the index of the maximum value along the last dimension to determine the
next_token = torch.argmax(logits, dim=-1)
# Output the index of the next token
next_token
#### OUTPUT ####
tensor(2983)
#### OUTPUT ####
To obtain the generated text from token IDs
# Decode the index of the next token using the tokenizer
tokenizer.decode([next_token.item()])
#### OUTPUT ####
42
#### OUTPUT ####
So, our input was “the answer to the ultimate question of life, the universe,
and everything is ”, and the output for it is “42”, which is the correct answer.
You can experiment with different input texts by simply changing these two
lines throughout the entire code, Rest of the code remains same!
# input prompt
prompt = "Your Input"
# Replacing 17 number with total number of tokens in your input
# You can check total number of tokens using len(tokens)
freqs_for_each_token = torch.outer(torch.arange(17), freqs)
Hope you have enjoyed and learned new things from this blog!
Python Data Science Machine Learning Deep Learning Artificial Intelligence
Written by Fareed Khan Following
22K Followers · Writer for Level Up Coding
MSc Data Science, I write on AI https://www.linkedin.com/in/fareed-khan-dev/
More from Fareed Khan and Level Up Coding
Fareed Khan in Level Up Coding Tushar Aggarwal in Level Up Coding
Reduce Your OpenAI API Costs by 101 Python Automation Scripts:
70% Streamlining Tasks and Boosting…
Prompt Engineering Is All You Need #1 of 101-Awesome Python Guides with
Tushar Aggarwal
11 min read · Mar 19, 2024 52 min read · Apr 12, 2024
740 5 1.7K 14
Jayden Levitt in Level Up Coding Fareed Khan
Billionaire Investor Warns: What’s Modern GUI using Tkinter
Ahead Is Worse Than a Recession. There are two things to remember:
See the world as it is and not how you’d like it
to be.
4 min read · Sep 4, 2022
· 8 min read · May 8, 2024
935 8
4.3K 89
See all from Fareed Khan See all from Level Up Coding
Recommended from Medium
Youness Mansar in Towards Data Science Yaokun Lin @ MachineLearningQ… in Level Up Co…
6 Real-World Uses of Microsoft’s Better Than GPT-4, the Stanford
Newest Phi-3 Vision-Language… team’s large model that can be ru…
Exploring possible use cases of Phi-3-Vision, In the process of implementing large models,
a small yet powerful MLLM that can be run… end-side AI is a very important direction.
7 min read · 5 days ago · 5 min read · Apr 7, 2024
434 1 412
Lists
AI Regulation ChatGPT
6 stories · 466 saves 21 stories · 651 saves
Generative AI Recommended ChatGPT prompts
Reading 47 stories · 1607 saves
52 stories · 1081 saves
Fabio Matricardi in Generative AI Uzman Ali in Write A Catalyst
To each AI its own Python This Is How GPT-4 Makes You a
How to manage with creativity multiple Superhuman
versions of your Interpreter for any… Get ahead of 99% of people
· 8 min read · 5 days ago · 3 min read · Apr 4, 2024
177 6 685 4
The PyCoach in Artificial Corner Scott Stockdale in The Startup
ChatGPT Users Will Love These How Pieter Levels Makes (At Least)
Amazing GPT-4o Use Cases $210K a Month From His Laptop …
Ten use cases for the new GPT-4o. I went through 126.8K tweets & found 7
patterns to Pieter’s success
· 5 min read · May 20, 2024 · 7 min read · May 17, 2024
665 3 3.1K 31
See more recommendations