File size: 4,898 Bytes
d898b95
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308

# πŸš€ Transformer From Scratch (PyTorch)

> A complete implementation of the **Transformer architecture** from the paper **Attention Is All You Need**, built entirely with PyTorch.

<p align="center">
  <img src="https://img.shields.io/badge/Python-3.10+-3776AB?logo=python&logoColor=white">
  <img src="https://img.shields.io/badge/PyTorch-2.x-EE4C2C?logo=pytorch&logoColor=white">
  <img src="https://img.shields.io/badge/License-MIT-success">
  <img src="https://img.shields.io/badge/Status-Active-brightgreen">
</p>

---

## πŸ“– Overview

The Transformer changed Natural Language Processing by replacing recurrent networks with **self-attention**, allowing models to process entire sequences in parallel.

This repository implements every major component **from scratch** without using `torch.nn.Transformer`.

It is designed for:

- πŸŽ“ Students learning Transformers
- πŸ‘¨β€πŸ’» Deep Learning practitioners
- πŸ”¬ AI researchers
- πŸ’Ό Interview preparation
- πŸš€ Building custom NLP models

---

## ✨ Features

- Token Embeddings
- Sinusoidal Positional Encoding
- Multi-Head Self Attention
- Masked Multi-Head Attention
- Encoder–Decoder Attention
- Position-wise Feed Forward Network
- Residual Connections
- Layer Normalization
- Stacked Encoder Layers
- Stacked Decoder Layers
- Final Vocabulary Projection

---

# πŸ—οΈ Overall Architecture

```mermaid
flowchart TD

A[Source Tokens]
B[Embedding]
C[Positional Encoding]

D["Encoder Γ— N"]

E[Encoder Memory]

F[Target Tokens]
G[Embedding]
H[Positional Encoding]

I["Decoder Γ— N"]

J[Linear Layer]

K[Vocabulary Probabilities]

A --> B --> C --> D --> E

F --> G --> H --> I

E --> I

I --> J --> K
```

---

# 🧩 Transformer Components

```mermaid
graph TD

Transformer

Transformer --> Embedding
Transformer --> PositionalEncoding
Transformer --> Encoder
Transformer --> Decoder
Transformer --> Linear

Encoder --> MultiHeadAttention
Encoder --> FeedForward
Encoder --> LayerNorm

Decoder --> MaskedAttention
Decoder --> CrossAttention
Decoder --> FeedForward2
Decoder --> LayerNorm2
```

---

# βš™οΈ Encoder Block

Each encoder layer consists of:

```text
Input
   β”‚
   β–Ό
Multi-Head Self Attention
   β”‚
Add & LayerNorm
   β”‚
Feed Forward Network
   β”‚
Add & LayerNorm
   β”‚
Output
```

---

# βš™οΈ Decoder Block

Each decoder layer consists of:

```text
Input
   β”‚
   β–Ό
Masked Multi-Head Attention
   β”‚
Add & LayerNorm
   β”‚
Cross Attention
   β”‚
Add & LayerNorm
   β”‚
Feed Forward Network
   β”‚
Add & LayerNorm
   β”‚
Output
```

---

# πŸ“‚ Project Structure

```text
transformer-from-scratch/

β”œβ”€β”€ model.py
β”œβ”€β”€ encoder.py
β”œβ”€β”€ decoder.py
β”œβ”€β”€ attention.py
β”œβ”€β”€ positional_encoding.py
β”œβ”€β”€ config.py
β”œβ”€β”€ train.py
β”œβ”€β”€ inference.py
β”œβ”€β”€ README.md
β”‚
└── notebooks/
```

---

# ⚑ Model Configuration

| Hyperparameter | Value |
|----------------|------:|
| Encoder Layers | 6 |
| Decoder Layers | 6 |
| Attention Heads | 8 |
| Embedding Size | 512 |
| Feed Forward Size | 2048 |
| Maximum Sequence Length | 5000 |

---

# πŸš€ Quick Start

```python
import torch
from model import Transformer

src = torch.randint(0, 10000, (64, 20))
tgt = torch.randint(0, 12000, (64, 15))

model = Transformer(
    src_vocab_size=10000,
    tgt_vocab_size=12000,
    num_heads=8,
    num_layers=6,
    emb_dim=512,
    nn_dim=2048
)

output = model(src, tgt)

print(output.shape)
```

Output

```python
torch.Size([64, 15, 12000])
```

---

# πŸ”„ Forward Pass

```mermaid
sequenceDiagram

participant Source
participant Encoder
participant Decoder
participant Output

Source->>Encoder: Source Tokens

Encoder->>Encoder: Self Attention

Encoder-->>Decoder: Encoder Memory

Decoder->>Decoder: Masked Self Attention

Decoder->>Encoder: Cross Attention

Decoder->>Output: Vocabulary Logits
```

---

# πŸ‹οΈ Training

```python
criterion = nn.CrossEntropyLoss()

optimizer = torch.optim.Adam(
    model.parameters(),
    lr=1e-4
)
```

---

# πŸ“š What You'll Learn

After studying this repository, you'll understand:

- Self-Attention
- Multi-Head Attention
- Positional Encoding
- Encoder Architecture
- Decoder Architecture
- Residual Connections
- Layer Normalization
- Feed Forward Networks
- Sequence-to-Sequence Modeling
- Machine Translation Pipeline

---

# 🚧 Future Improvements

- Greedy Decoding
- Beam Search
- Label Smoothing
- Learning Rate Scheduler
- Mixed Precision Training
- Flash Attention
- KV Cache
- Weight Sharing
- Byte Pair Encoding (BPE)
- Hugging Face Checkpoint Support
- ONNX Export

---

# πŸ“„ Reference Paper

**Attention Is All You Need**

Ashish Vaswani et al.

NeurIPS 2017

---

# ⭐ Support

If this project helped you understand Transformers, consider giving it a ⭐ on GitHub.

It helps others discover the project and motivates future improvements.

---

# πŸ“œ License

Released under the **MIT License**.