Spaces:
Sleeping
Sleeping
File size: 65,833 Bytes
af4939b | 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 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 | # ---
# jupyter:
# jupytext:
# text_representation:
# extension: .py
# format_name: percent
# format_version: '1.3'
# jupytext_version: 1.17.1
# kernelspec:
# display_name: Python 3 (ipykernel)
# language: python
# name: python3
# ---
# %% [markdown]
"""
# Module 11: Embeddings - Converting Tokens to Learnable Representations
Welcome to Module 11! You're about to build embedding layers that convert discrete tokens into dense, learnable vectors - the foundation of all modern NLP models.
## π Prerequisites & Progress
**You've Built**: Tensors, layers, tokenization (discrete text processing)
**You'll Build**: Embedding lookups and positional encodings for sequence modeling
**You'll Enable**: Foundation for attention mechanisms and transformer architectures
**Connection Map**:
```
Tokenization β Embeddings β Positional Encoding β Attention (Module 12)
(discrete) (dense) (position-aware) (context-aware)
```
## π― Learning Objectives
By the end of this module, you will:
1. Implement embedding layers for token-to-vector conversion
2. Understand learnable vs fixed positional encodings
3. Build both sinusoidal and learned position encodings
4. Analyze embedding memory requirements and lookup performance
Let's transform tokens into intelligence!
## π¦ Where This Code Lives in the Final Package
**Learning Side:** You work in `modules/11_embeddings/embeddings_dev.py`
**Building Side:** Code exports to `tinytorch.text.embeddings`
```python
# How to use this module:
from tinytorch.core.embeddings import Embedding, PositionalEncoding, create_sinusoidal_embeddings
```
**Why this matters:**
- **Learning:** Complete embedding system for converting discrete tokens to continuous representations
- **Production:** Essential component matching PyTorch's torch.nn.Embedding with positional encoding patterns
- **Consistency:** All embedding operations and positional encodings in text.embeddings
- **Integration:** Works seamlessly with tokenizers for complete text processing pipeline
"""
# %%
#| default_exp core.embeddings
# %%
#| export
import numpy as np
import math
from typing import List, Optional, Tuple
# Import from previous modules - following dependency chain
from tinytorch.core.tensor import Tensor
# Constants for memory calculations
BYTES_PER_FLOAT32 = 4 # Standard float32 size in bytes
MB_TO_BYTES = 1024 * 1024 # Megabytes to bytes conversion
# %% [markdown]
"""
## π‘ Introduction - Why Embeddings?
Neural networks operate on dense vectors, but language consists of discrete tokens. Embeddings are the crucial bridge that converts discrete tokens into continuous, learnable vector representations that capture semantic meaning.
### The Token-to-Vector Challenge
Consider the tokens from our tokenizer: [1, 42, 7] - how do we turn these discrete indices into meaningful vectors that capture semantic relationships?
```
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β EMBEDDING PIPELINE: Discrete Tokens β Dense Vectors β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β β
β Input (Token IDs): [1, 42, 7] β
β β β
β ββ Step 1: Lookup in embedding table β
β β Each ID β vector of learned features β
β β β
β ββ Step 2: Add positional information β
β β Same word at different positions β differentβ
β β β
β ββ Step 3: Create position-aware representations β
β β Ready for attention mechanisms β
β β β
β ββ Step 4: Enable semantic understanding β
β Similar words β similar vectors β
β β
β Output (Dense Vectors): [[0.1, 0.4, ...], [0.7, -0.2, ...]] β
β β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
```
### The Four-Layer Embedding System
Modern embedding systems combine multiple components:
**1. Token embeddings** - Learn semantic representations for each vocabulary token
**2. Positional encoding** - Add information about position in sequence
**3. Optional scaling** - Normalize embedding magnitudes (Transformer convention)
**4. Integration** - Combine everything into position-aware representations
### Why This Matters
The choice of embedding strategy dramatically affects:
- **Semantic understanding** - How well the model captures word meaning
- **Memory requirements** - Embedding tables can be gigabytes in size
- **Position awareness** - Whether the model understands word order
- **Extrapolation** - How well the model handles longer sequences than training
"""
# %% [markdown]
"""
## π Foundations - Embedding Strategies
Different embedding approaches make different trade-offs between memory, semantic understanding, and computational efficiency.
### Token Embedding Lookup Process
**Approach**: Each token ID maps to a learned dense vector
```
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β TOKEN EMBEDDING LOOKUP PROCESS β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β β
β Step 1: Build Embedding Table (vocab_size Γ embed_dim) β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β Token ID β Embedding Vector (learned features) β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€ β
β β 0 β [0.2, -0.1, 0.3, 0.8, ...] (<UNK>) β β
β β 1 β [0.1, 0.4, -0.2, 0.6, ...] ("the") β β
β β 42 β [0.7, -0.2, 0.1, 0.4, ...] ("cat") β β
β β 7 β [-0.3, 0.1, 0.5, 0.2, ...] ("sat") β β
β β ... β ... β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β
β Step 2: Lookup Process (O(1) per token) β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β Input: Token IDs [1, 42, 7] β β
β β β β
β β ID 1 β embedding[1] β [0.1, 0.4, -0.2, ...] β β
β β ID 42 β embedding[42] β [0.7, -0.2, 0.1, ...] β β
β β ID 7 β embedding[7] β [-0.3, 0.1, 0.5, ...] β β
β β β β
β β Output: Matrix (3 Γ embed_dim) β β
β β [[0.1, 0.4, -0.2, ...], β β
β β [0.7, -0.2, 0.1, ...], β β
β β [-0.3, 0.1, 0.5, ...]] β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β
β Step 3: Training Updates Embeddings β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β Gradients flow back to embedding table β β
β β β β
β β Similar words learn similar vectors: β β
β β "cat" and "dog" β closer in embedding space β β
β β "the" and "a" β closer in embedding space β β
β β "sat" and "run" β farther in embedding space β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
```
**Pros**:
- Dense representation (every dimension meaningful)
- Learnable (captures semantic relationships through training)
- Efficient lookup (O(1) time complexity)
- Scales to large vocabularies
**Cons**:
- Memory intensive (vocab_size Γ embed_dim parameters)
- Requires training to develop semantic relationships
- Fixed vocabulary (new tokens need special handling)
### Positional Encoding Strategies
Since embeddings by themselves have no notion of order, we need positional information:
```
Position-Aware Embeddings = Token Embeddings + Positional Encoding
Learned Approach: Fixed Mathematical Approach:
Position 0 β [learned] Position 0 β [sin/cos pattern]
Position 1 β [learned] Position 1 β [sin/cos pattern]
Position 2 β [learned] Position 2 β [sin/cos pattern]
... ...
```
**Learned Positional Encoding**:
- Trainable position embeddings
- Can learn task-specific patterns
- Limited to maximum training sequence length
**Sinusoidal Positional Encoding**:
- Mathematical sine/cosine patterns
- No additional parameters
- Can extrapolate to longer sequences
### Strategy Comparison
```
Text: "cat sat on mat" β Token IDs: [42, 7, 15, 99]
Token Embeddings: [vec_42, vec_7, vec_15, vec_99] # Same vectors anywhere
Position-Aware: [vec_42+pos_0, vec_7+pos_1, vec_15+pos_2, vec_99+pos_3]
β Now "cat" at position 0 β "cat" at position 1
```
The combination enables transformers to understand both meaning and order!
"""
# %% [markdown]
"""
## ποΈ Implementation - Building Embedding Systems
Let's implement embedding systems from basic token lookup to sophisticated position-aware representations. We'll start with the core embedding layer and work up to complete systems.
"""
# %% nbgrader={"grade": false, "grade_id": "embedding-class", "solution": true}
#| export
class Embedding:
"""
Learnable embedding layer that maps token indices to dense vectors.
This is the fundamental building block for converting discrete tokens
into continuous representations that neural networks can process.
TODO: Implement the Embedding class
APPROACH:
1. Initialize embedding matrix with random weights (vocab_size, embed_dim)
2. Implement forward pass as matrix lookup using numpy indexing
3. Handle batch dimensions correctly
4. Return parameters for optimization
EXAMPLE:
>>> embed = Embedding(vocab_size=100, embed_dim=64)
>>> tokens = Tensor([[1, 2, 3], [4, 5, 6]]) # batch_size=2, seq_len=3
>>> output = embed.forward(tokens)
>>> print(output.shape)
(2, 3, 64)
HINTS:
- Use numpy advanced indexing for lookup: weight[indices]
- Embedding matrix shape: (vocab_size, embed_dim)
- Initialize with Xavier/Glorot uniform for stable gradients
- Handle multi-dimensional indices correctly
"""
### BEGIN SOLUTION
def __init__(self, vocab_size: int, embed_dim: int):
"""
Initialize embedding layer.
Args:
vocab_size: Size of vocabulary (number of unique tokens)
embed_dim: Dimension of embedding vectors
"""
self.vocab_size = vocab_size
self.embed_dim = embed_dim
# Xavier initialization for better gradient flow
limit = math.sqrt(6.0 / (vocab_size + embed_dim))
self.weight = Tensor(
np.random.uniform(-limit, limit, (vocab_size, embed_dim))
)
def forward(self, indices: Tensor) -> Tensor:
"""
Forward pass: lookup embeddings for given indices.
Args:
indices: Token indices of shape (batch_size, seq_len) or (seq_len,)
Returns:
Embedded vectors of shape (*indices.shape, embed_dim)
"""
# Handle input validation
if np.any(indices.data >= self.vocab_size) or np.any(indices.data < 0):
raise ValueError(
f"Index out of range. Expected 0 <= indices < {self.vocab_size}, "
f"got min={np.min(indices.data)}, max={np.max(indices.data)}"
)
# Perform embedding lookup using advanced indexing
# This is equivalent to one-hot multiplication but much more efficient
embedded = self.weight.data[indices.data.astype(int)]
return Tensor(embedded)
def __call__(self, indices: Tensor) -> Tensor:
"""Allows the embedding to be called like a function."""
return self.forward(indices)
def parameters(self) -> List[Tensor]:
"""Return trainable parameters."""
return [self.weight]
def __repr__(self):
return f"Embedding(vocab_size={self.vocab_size}, embed_dim={self.embed_dim})"
### END SOLUTION
# %% nbgrader={"grade": true, "grade_id": "test-embedding", "locked": true, "points": 10}
def test_unit_embedding():
"""π¬ Unit Test: Embedding Layer Implementation"""
print("π¬ Unit Test: Embedding Layer...")
# Test 1: Basic embedding creation and forward pass
embed = Embedding(vocab_size=100, embed_dim=64)
# Single sequence
tokens = Tensor([1, 2, 3])
output = embed.forward(tokens)
assert output.shape == (3, 64), f"Expected shape (3, 64), got {output.shape}"
assert len(embed.parameters()) == 1, "Should have 1 parameter (weight matrix)"
assert embed.parameters()[0].shape == (100, 64), "Weight matrix has wrong shape"
# Test 2: Batch processing
batch_tokens = Tensor([[1, 2, 3], [4, 5, 6]])
batch_output = embed.forward(batch_tokens)
assert batch_output.shape == (2, 3, 64), f"Expected batch shape (2, 3, 64), got {batch_output.shape}"
# Test 3: Embedding lookup consistency
single_lookup = embed.forward(Tensor([1]))
batch_lookup = embed.forward(Tensor([[1]]))
# Should get same embedding for same token
assert np.allclose(single_lookup.data[0], batch_lookup.data[0, 0]), "Inconsistent embedding lookup"
# Test 4: Parameter access
params = embed.parameters()
assert len(params) == 1, "Should have 1 parameter"
print("β
Embedding layer works correctly!")
# Run test immediately when developing this module
if __name__ == "__main__":
test_unit_embedding()
# %% [markdown]
"""
### Learned Positional Encoding
Trainable position embeddings that can learn position-specific patterns. This approach treats each position as a learnable parameter, similar to token embeddings.
```
Learned Position Embedding Process:
Step 1: Initialize Position Embedding Table
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Position β Learnable Vector (trainable parameters) β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β 0 β [0.1, -0.2, 0.4, ...] β learns "start" patterns β
β 1 β [0.3, 0.1, -0.1, ...] β learns "second" patternsβ
β 2 β [-0.1, 0.5, 0.2, ...] β learns "third" patterns β
β ... β ... β
β 511 β [0.4, -0.3, 0.1, ...] β learns "late" patterns β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Step 2: Add to Token Embeddings
Input: ["The", "cat", "sat"] β Token IDs: [1, 42, 7]
Token embeddings: Position embeddings: Combined:
[1] β [0.1, 0.4, ...] + [0.1, -0.2, ...] = [0.2, 0.2, ...]
[42] β [0.7, -0.2, ...] + [0.3, 0.1, ...] = [1.0, -0.1, ...]
[7] β [-0.3, 0.1, ...] + [-0.1, 0.5, ...] = [-0.4, 0.6, ...]
Result: Position-aware embeddings that can learn task-specific patterns!
```
**Why learned positions work**: The model can discover that certain positions have special meaning (like sentence beginnings, question words, etc.) and learn specific representations for those patterns.
"""
# %% [markdown]
"""
### Implementing Learned Positional Encoding
Let's build trainable positional embeddings that can learn position-specific patterns for our specific task.
"""
# %% nbgrader={"grade": false, "grade_id": "positional-encoding", "solution": true}
#| export
class PositionalEncoding:
"""
Learnable positional encoding layer.
Adds trainable position-specific vectors to token embeddings,
allowing the model to learn positional patterns specific to the task.
TODO: Implement learnable positional encoding
APPROACH:
1. Create embedding matrix for positions: (max_seq_len, embed_dim)
2. Forward pass: lookup position embeddings and add to input
3. Handle different sequence lengths gracefully
4. Return parameters for training
EXAMPLE:
>>> pos_enc = PositionalEncoding(max_seq_len=512, embed_dim=64)
>>> embeddings = Tensor(np.random.randn(2, 10, 64)) # (batch, seq, embed)
>>> output = pos_enc.forward(embeddings)
>>> print(output.shape)
(2, 10, 64) # Same shape, but now position-aware
HINTS:
- Position embeddings shape: (max_seq_len, embed_dim)
- Use slice [:seq_len] to handle variable lengths
- Add position encodings to input embeddings element-wise
- Initialize with smaller values than token embeddings (they're additive)
"""
### BEGIN SOLUTION
def __init__(self, max_seq_len: int, embed_dim: int):
"""
Initialize learnable positional encoding.
Args:
max_seq_len: Maximum sequence length to support
embed_dim: Embedding dimension (must match token embeddings)
"""
self.max_seq_len = max_seq_len
self.embed_dim = embed_dim
# Initialize position embedding matrix
# Smaller initialization than token embeddings since these are additive
limit = math.sqrt(2.0 / embed_dim)
self.position_embeddings = Tensor(
np.random.uniform(-limit, limit, (max_seq_len, embed_dim))
)
def forward(self, x: Tensor) -> Tensor:
"""
Add positional encodings to input embeddings.
Args:
x: Input embeddings of shape (batch_size, seq_len, embed_dim)
Returns:
Position-encoded embeddings of same shape
"""
if len(x.shape) != 3:
raise ValueError(f"Expected 3D input (batch, seq, embed), got shape {x.shape}")
batch_size, seq_len, embed_dim = x.shape
if seq_len > self.max_seq_len:
raise ValueError(
f"Sequence length {seq_len} exceeds maximum {self.max_seq_len}"
)
if embed_dim != self.embed_dim:
raise ValueError(
f"Embedding dimension mismatch: expected {self.embed_dim}, got {embed_dim}"
)
# Slice position embeddings for this sequence length using Tensor slicing
pos_embeddings = self.position_embeddings[:seq_len] # (seq_len, embed_dim)
# Reshape to add batch dimension: (1, seq_len, embed_dim)
pos_data = pos_embeddings.data[np.newaxis, :, :]
pos_embeddings_batched = Tensor(pos_data)
# Add positional information
result = x + pos_embeddings_batched
return result
def __call__(self, x: Tensor) -> Tensor:
"""Allows the positional encoding to be called like a function."""
return self.forward(x)
def parameters(self) -> List[Tensor]:
"""Return trainable parameters."""
return [self.position_embeddings]
def __repr__(self):
return f"PositionalEncoding(max_seq_len={self.max_seq_len}, embed_dim={self.embed_dim})"
### END SOLUTION
# %% nbgrader={"grade": true, "grade_id": "test-positional", "locked": true, "points": 10}
def test_unit_positional_encoding():
"""π¬ Unit Test: Positional Encoding Implementation"""
print("π¬ Unit Test: Positional Encoding...")
# Test 1: Basic functionality
pos_enc = PositionalEncoding(max_seq_len=512, embed_dim=64)
# Create sample embeddings
embeddings = Tensor(np.random.randn(2, 10, 64))
output = pos_enc.forward(embeddings)
assert output.shape == (2, 10, 64), f"Expected shape (2, 10, 64), got {output.shape}"
# Test 2: Position consistency
# Same position should always get same encoding
emb1 = Tensor(np.zeros((1, 5, 64)))
emb2 = Tensor(np.zeros((1, 5, 64)))
out1 = pos_enc.forward(emb1)
out2 = pos_enc.forward(emb2)
assert np.allclose(out1.data, out2.data), "Position encodings should be consistent"
# Test 3: Different positions get different encodings
short_emb = Tensor(np.zeros((1, 3, 64)))
long_emb = Tensor(np.zeros((1, 5, 64)))
short_out = pos_enc.forward(short_emb)
long_out = pos_enc.forward(long_emb)
# First 3 positions should match
assert np.allclose(short_out.data, long_out.data[:, :3, :]), "Position encoding prefix should match"
# Test 4: Parameters
params = pos_enc.parameters()
assert len(params) == 1, "Should have 1 parameter (position embeddings)"
assert params[0].shape == (512, 64), "Position embedding matrix has wrong shape"
print("β
Positional encoding works correctly!")
# Run test immediately when developing this module
if __name__ == "__main__":
test_unit_positional_encoding()
# %% [markdown]
"""
### Sinusoidal Positional Encoding
Mathematical position encoding that creates unique signatures for each position using trigonometric functions. This approach requires no additional parameters and can extrapolate to sequences longer than seen during training.
```
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β SINUSOIDAL POSITION ENCODING: Mathematical Position Signatures β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β β
β MATHEMATICAL FORMULA: β
β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β PE(pos, 2i) = sin(pos / 10000^(2i/embed_dim)) # Even dims β β
β β PE(pos, 2i+1) = cos(pos / 10000^(2i/embed_dim)) # Odd dims β β
β β β β
β β Where: β β
β β pos = position in sequence (0, 1, 2, ...) β β
β β i = dimension pair index (0, 1, 2, ...) β β
β β 10000 = base frequency (creates different wavelengths) β β
β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β
β FREQUENCY PATTERN ACROSS DIMENSIONS: β
β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β Dimension: 0 1 2 3 4 5 6 7 β β
β β Frequency: High High Med Med Low Low VLow VLow β β
β β Function: sin cos sin cos sin cos sin cos β β
β β β β
β β pos=0: [0.00, 1.00, 0.00, 1.00, 0.00, 1.00, 0.00, 1.00] β β
β β pos=1: [0.84, 0.54, 0.01, 1.00, 0.00, 1.00, 0.00, 1.00] β β
β β pos=2: [0.91,-0.42, 0.02, 1.00, 0.00, 1.00, 0.00, 1.00] β β
β β pos=3: [0.14,-0.99, 0.03, 1.00, 0.00, 1.00, 0.00, 1.00] β β
β β β β
β β Each position gets a unique mathematical "fingerprint"! β β
β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β
β WHY THIS WORKS: β
β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β Wave Pattern Visualization: β β
β β β β
β β Dim 0: βΏβΏβΏβΏβΏβΏβΏβΏβΏβΏβΏβΏβΏβΏβΏβΏβΏβΏβΏβΏ (rapid oscillation) β β
β β Dim 2: βΏ---βΏ---βΏ---βΏ---βΏ---βΏ (medium frequency) β β
β β Dim 4: βΏ-----βΏ-----βΏ-----βΏ-- (low frequency) β β
β β Dim 6: βΏ----------βΏ---------- (very slow changes) β β
β β β β
β β β’ High frequency dims change rapidly between positions β β
β β β’ Low frequency dims change slowly β β
β β β’ Combination creates unique signature for each position β β
β β β’ Similar positions have similar (but distinct) encodings β β
β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β
β KEY ADVANTAGES: β
β β’ Zero parameters (no memory overhead) β
β β’ Infinite sequence length (can extrapolate) β
β β’ Smooth transitions (nearby positions are similar) β
β β’ Mathematical elegance (interpretable patterns) β
β β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
```
**Why transformers use this**: The mathematical structure allows the model to learn relative positions (how far apart tokens are) through simple vector operations, which is crucial for attention mechanisms!
"""
# %% [markdown]
"""
### Implementing Sinusoidal Positional Encodings
Let's implement the mathematical position encoding that creates unique signatures for each position using trigonometric functions.
"""
# %% nbgrader={"grade": false, "grade_id": "sinusoidal-function", "solution": true}
#| export
def create_sinusoidal_embeddings(max_seq_len: int, embed_dim: int) -> Tensor:
"""
Create sinusoidal positional encodings as used in "Attention Is All You Need".
These fixed encodings use sine and cosine functions to create unique
positional patterns that don't require training and can extrapolate
to longer sequences than seen during training.
TODO: Implement sinusoidal positional encoding generation
APPROACH:
1. Create position indices: [0, 1, 2, ..., max_seq_len-1]
2. Create dimension indices for frequency calculation
3. Apply sine to even dimensions, cosine to odd dimensions
4. Use the transformer paper formula with 10000 base
MATHEMATICAL FORMULA:
PE(pos, 2i) = sin(pos / 10000^(2i/embed_dim))
PE(pos, 2i+1) = cos(pos / 10000^(2i/embed_dim))
EXAMPLE:
>>> pe = create_sinusoidal_embeddings(512, 64)
>>> print(pe.shape)
(512, 64)
>>> # Position 0: [0, 1, 0, 1, 0, 1, ...] (sin(0)=0, cos(0)=1)
>>> # Each position gets unique trigonometric signature
HINTS:
- Use np.arange to create position and dimension arrays
- Calculate div_term using exponential for frequency scaling
- Apply different formulas to even/odd dimensions
- The 10000 base creates different frequencies for different dimensions
"""
### BEGIN SOLUTION
# Create position indices [0, 1, 2, ..., max_seq_len-1]
position = np.arange(max_seq_len, dtype=np.float32)[:, np.newaxis] # (max_seq_len, 1)
# Create dimension indices for calculating frequencies
div_term = np.exp(
np.arange(0, embed_dim, 2, dtype=np.float32) *
-(math.log(10000.0) / embed_dim)
) # (embed_dim//2,)
# Initialize the positional encoding matrix
pe = np.zeros((max_seq_len, embed_dim), dtype=np.float32)
# Apply sine to even indices (0, 2, 4, ...)
pe[:, 0::2] = np.sin(position * div_term)
# Apply cosine to odd indices (1, 3, 5, ...)
if embed_dim % 2 == 1:
# Handle odd embed_dim by only filling available positions
pe[:, 1::2] = np.cos(position * div_term[:-1])
else:
pe[:, 1::2] = np.cos(position * div_term)
return Tensor(pe)
### END SOLUTION
# %% nbgrader={"grade": true, "grade_id": "test-sinusoidal", "locked": true, "points": 10}
def test_unit_sinusoidal_embeddings():
"""π¬ Unit Test: Sinusoidal Positional Embeddings"""
print("π¬ Unit Test: Sinusoidal Embeddings...")
# Test 1: Basic shape and properties
pe = create_sinusoidal_embeddings(512, 64)
assert pe.shape == (512, 64), f"Expected shape (512, 64), got {pe.shape}"
# Test 2: Position 0 should be mostly zeros and ones
pos_0 = pe.data[0]
# Even indices should be sin(0) = 0
assert np.allclose(pos_0[0::2], 0, atol=1e-6), "Even indices at position 0 should be ~0"
# Odd indices should be cos(0) = 1
assert np.allclose(pos_0[1::2], 1, atol=1e-6), "Odd indices at position 0 should be ~1"
# Test 3: Different positions should have different encodings
pe_small = create_sinusoidal_embeddings(10, 8)
# Check that consecutive positions are different
for i in range(9):
assert not np.allclose(pe_small.data[i], pe_small.data[i+1]), f"Positions {i} and {i+1} are too similar"
# Test 4: Frequency properties
# Higher dimensions should have lower frequencies (change more slowly)
pe_test = create_sinusoidal_embeddings(100, 16)
# First dimension should change faster than last dimension
first_dim_changes = np.sum(np.abs(np.diff(pe_test.data[:10, 0])))
last_dim_changes = np.sum(np.abs(np.diff(pe_test.data[:10, -1])))
assert first_dim_changes > last_dim_changes, "Lower dimensions should change faster than higher dimensions"
# Test 5: Odd embed_dim handling
pe_odd = create_sinusoidal_embeddings(10, 7)
assert pe_odd.shape == (10, 7), "Should handle odd embedding dimensions"
print("β
Sinusoidal embeddings work correctly!")
# Run test immediately when developing this module
if __name__ == "__main__":
test_unit_sinusoidal_embeddings()
# %% [markdown]
"""
## Integration - Bringing It Together
Now let's build the complete embedding system that combines token and positional embeddings into a production-ready component used in modern transformers and language models.
```
Complete Embedding Pipeline:
1. Token Lookup β 2. Position Encoding β 3. Combination β 4. Ready for Attention
β β β β
sparse IDs position info dense vectors context-aware
```
"""
# %% [markdown]
"""
### Complete Embedding System Architecture
The production embedding layer that powers modern transformers combines multiple components into an efficient, flexible pipeline.
```
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β COMPLETE EMBEDDING SYSTEM: Token + Position β Attention-Ready β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β β
β INPUT: Token IDs [1, 42, 7, 99] β
β β β
β ββ STEP 1: TOKEN EMBEDDING LOOKUP β
β β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β β Token Embedding Table (vocab_size Γ embed_dim) β β
β β β β β
β β β ID 1 β [0.1, 0.4, -0.2, ...] (semantic features) β β
β β β ID 42 β [0.7, -0.2, 0.1, ...] (learned meaning) β β
β β β ID 7 β [-0.3, 0.1, 0.5, ...] (dense vector) β β
β β β ID 99 β [0.9, -0.1, 0.3, ...] (context-free) β β
β β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β β
β ββ STEP 2: POSITIONAL ENCODING (Choose Strategy) β
β β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β β Strategy A: Learned PE β β
β β β pos 0 β [trainable vector] (learns patterns) β β
β β β pos 1 β [trainable vector] (task-specific) β β
β β β pos 2 β [trainable vector] (fixed max length) β β
β β β β β
β β β Strategy B: Sinusoidal PE β β
β β β pos 0 β [sin/cos pattern] (mathematical) β β
β β β pos 1 β [sin/cos pattern] (no parameters) β β
β β β pos 2 β [sin/cos pattern] (infinite length) β β
β β β β β
β β β Strategy C: No PE β β
β β β positions ignored (order-agnostic) β β
β β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β β
β ββ STEP 3: ELEMENT-WISE ADDITION β
β β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β β Token + Position = Position-Aware Representation β β
β β β β β
β β β [0.1, 0.4, -0.2] + [pos0] = [0.1+p0, 0.4+p0, ...] β β
β β β [0.7, -0.2, 0.1] + [pos1] = [0.7+p1, -0.2+p1, ...] β β
β β β [-0.3, 0.1, 0.5] + [pos2] = [-0.3+p2, 0.1+p2, ...] β β
β β β [0.9, -0.1, 0.3] + [pos3] = [0.9+p3, -0.1+p3, ...] β β
β β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β β
β ββ STEP 4: OPTIONAL SCALING (Transformer Convention) β
β β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β β Scale by βembed_dim for gradient stability β β
β β β Helps balance token and position magnitudes β β
β β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β β
β ββ OUTPUT: Position-Aware Dense Vectors β
β Ready for attention mechanisms and transformers! β
β β
β INTEGRATION FEATURES: β
β β’ Flexible position encoding (learned/sinusoidal/none) β
β β’ Efficient batch processing with variable sequence lengths β
β β’ Memory optimization (shared position encodings) β
β β’ Production patterns (matches PyTorch/HuggingFace) β
β β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
```
**Why this architecture works**: By separating token semantics from positional information, the model can learn meaning and order independently, then combine them optimally for the specific task.
"""
# %% nbgrader={"grade": false, "grade_id": "complete-system", "solution": true}
#| export
class EmbeddingLayer:
"""
Complete embedding system combining token and positional embeddings.
This is the production-ready component that handles the full embedding
pipeline used in transformers and other sequence models.
TODO: Implement complete embedding system
APPROACH:
1. Combine token embedding + positional encoding
2. Support both learned and sinusoidal position encodings
3. Handle variable sequence lengths gracefully
4. Add optional embedding scaling (Transformer convention)
EXAMPLE:
>>> embed_layer = EmbeddingLayer(
... vocab_size=50000,
... embed_dim=512,
... max_seq_len=2048,
... pos_encoding='learned'
... )
>>> tokens = Tensor([[1, 2, 3], [4, 5, 6]])
>>> output = embed_layer.forward(tokens)
>>> print(output.shape)
(2, 3, 512)
HINTS:
- First apply token embedding, then add positional encoding
- Support 'learned', 'sinusoidal', or None for pos_encoding
- Handle both 2D (batch, seq) and 1D (seq) inputs gracefully
- Scale embeddings by sqrt(embed_dim) if requested (transformer convention)
"""
### BEGIN SOLUTION
def __init__(
self,
vocab_size: int,
embed_dim: int,
max_seq_len: int = 512,
pos_encoding: str = 'learned',
scale_embeddings: bool = False
):
"""
Initialize complete embedding system.
Args:
vocab_size: Size of vocabulary
embed_dim: Embedding dimension
max_seq_len: Maximum sequence length for positional encoding
pos_encoding: Type of positional encoding ('learned', 'sinusoidal', or None)
scale_embeddings: Whether to scale embeddings by sqrt(embed_dim)
"""
self.vocab_size = vocab_size
self.embed_dim = embed_dim
self.max_seq_len = max_seq_len
self.pos_encoding_type = pos_encoding
self.scale_embeddings = scale_embeddings
# Token embedding layer
self.token_embedding = Embedding(vocab_size, embed_dim)
# Positional encoding
if pos_encoding == 'learned':
self.pos_encoding = PositionalEncoding(max_seq_len, embed_dim)
elif pos_encoding == 'sinusoidal':
# Create fixed sinusoidal encodings (no parameters)
self.pos_encoding = create_sinusoidal_embeddings(max_seq_len, embed_dim)
elif pos_encoding is None:
self.pos_encoding = None
else:
raise ValueError(f"Unknown pos_encoding: {pos_encoding}. Use 'learned', 'sinusoidal', or None")
def forward(self, tokens: Tensor) -> Tensor:
"""
Forward pass through complete embedding system.
Args:
tokens: Token indices of shape (batch_size, seq_len) or (seq_len,)
Returns:
Embedded tokens with positional information
"""
# Handle 1D input by adding batch dimension
if len(tokens.shape) == 1:
# NOTE: Tensor reshape preserves gradients
tokens = tokens.reshape(1, -1)
squeeze_batch = True
else:
squeeze_batch = False
# Get token embeddings
token_embeds = self.token_embedding.forward(tokens) # (batch, seq, embed)
# Scale embeddings if requested (transformer convention)
if self.scale_embeddings:
scale_factor = math.sqrt(self.embed_dim)
token_embeds = token_embeds * scale_factor # Use Tensor multiplication to preserve gradients
# Add positional encoding
if self.pos_encoding_type == 'learned':
# Use learnable positional encoding
output = self.pos_encoding.forward(token_embeds)
elif self.pos_encoding_type == 'sinusoidal':
# Use fixed sinusoidal encoding (not learnable)
batch_size, seq_len, embed_dim = token_embeds.shape
pos_embeddings = self.pos_encoding[:seq_len] # Slice using Tensor slicing
# Reshape to add batch dimension
pos_data = pos_embeddings.data[np.newaxis, :, :]
pos_embeddings_batched = Tensor(pos_data) # Sinusoidal are fixed
output = token_embeds + pos_embeddings_batched
else:
# No positional encoding
output = token_embeds
# Remove batch dimension if it was added
if squeeze_batch:
# Use Tensor slicing (now supported in Module 01)
output = output[0]
return output
def __call__(self, tokens: Tensor) -> Tensor:
"""Allows the embedding layer to be called like a function."""
return self.forward(tokens)
def parameters(self) -> List[Tensor]:
"""Return all trainable parameters."""
params = self.token_embedding.parameters()
if self.pos_encoding_type == 'learned':
params.extend(self.pos_encoding.parameters())
return params
def __repr__(self):
return (f"EmbeddingLayer(vocab_size={self.vocab_size}, "
f"embed_dim={self.embed_dim}, "
f"pos_encoding='{self.pos_encoding_type}')")
### END SOLUTION
# %% nbgrader={"grade": true, "grade_id": "test-complete-system", "locked": true, "points": 15}
def test_unit_complete_embedding_system():
"""π¬ Unit Test: Complete Embedding System"""
print("π¬ Unit Test: Complete Embedding System...")
# Test 1: Learned positional encoding
embed_learned = EmbeddingLayer(
vocab_size=100,
embed_dim=64,
max_seq_len=128,
pos_encoding='learned'
)
tokens = Tensor([[1, 2, 3], [4, 5, 6]])
output_learned = embed_learned.forward(tokens)
assert output_learned.shape == (2, 3, 64), f"Expected shape (2, 3, 64), got {output_learned.shape}"
# Test 2: Sinusoidal positional encoding
embed_sin = EmbeddingLayer(
vocab_size=100,
embed_dim=64,
pos_encoding='sinusoidal'
)
output_sin = embed_sin.forward(tokens)
assert output_sin.shape == (2, 3, 64), "Sinusoidal embedding should have same shape"
# Test 3: No positional encoding
embed_none = EmbeddingLayer(
vocab_size=100,
embed_dim=64,
pos_encoding=None
)
output_none = embed_none.forward(tokens)
assert output_none.shape == (2, 3, 64), "No pos encoding should have same shape"
# Test 4: 1D input handling
tokens_1d = Tensor([1, 2, 3])
output_1d = embed_learned.forward(tokens_1d)
assert output_1d.shape == (3, 64), f"Expected shape (3, 64) for 1D input, got {output_1d.shape}"
# Test 5: Embedding scaling
embed_scaled = EmbeddingLayer(
vocab_size=100,
embed_dim=64,
pos_encoding=None,
scale_embeddings=True
)
# Use same weights to ensure fair comparison
embed_scaled.token_embedding.weight = embed_none.token_embedding.weight
output_scaled = embed_scaled.forward(tokens)
output_unscaled = embed_none.forward(tokens)
# Scaled version should be sqrt(64) times larger
scale_factor = math.sqrt(64)
expected_scaled = output_unscaled.data * scale_factor
assert np.allclose(output_scaled.data, expected_scaled, rtol=1e-5), "Embedding scaling not working correctly"
# Test 6: Parameter counting
params_learned = embed_learned.parameters()
params_sin = embed_sin.parameters()
params_none = embed_none.parameters()
assert len(params_learned) == 2, "Learned encoding should have 2 parameter tensors"
assert len(params_sin) == 1, "Sinusoidal encoding should have 1 parameter tensor"
assert len(params_none) == 1, "No pos encoding should have 1 parameter tensor"
print("β
Complete embedding system works correctly!")
# Run test immediately when developing this module
if __name__ == "__main__":
test_unit_complete_embedding_system()
# %% [markdown]
"""
## π Systems Analysis - Embedding Trade-offs
Understanding the performance implications of different embedding strategies is crucial for building efficient NLP systems that scale to production workloads.
"""
# %% nbgrader={"grade": false, "grade_id": "memory-analysis", "solution": true}
def analyze_embedding_memory_scaling():
"""π Compare embedding memory requirements across different model scales."""
print("π Analyzing Embedding Memory Requirements...")
# Vocabulary and embedding dimension scenarios
scenarios = [
("Small Model", 10_000, 256),
("Medium Model", 50_000, 512),
("Large Model", 100_000, 1024),
("GPT-3 Scale", 50_257, 12_288),
]
print(f"{'Model':<15} {'Vocab Size':<12} {'Embed Dim':<12} {'Memory (MB)':<15} {'Parameters (M)':<15}")
print("-" * 80)
for name, vocab_size, embed_dim in scenarios:
# Calculate memory for FP32 (4 bytes per parameter)
params = vocab_size * embed_dim
memory_mb = params * BYTES_PER_FLOAT32 / MB_TO_BYTES
params_m = params / 1_000_000
print(f"{name:<15} {vocab_size:<12,} {embed_dim:<12} {memory_mb:<15.1f} {params_m:<15.2f}")
print("\nπ‘ Key Insights:")
print("β’ Embedding tables often dominate model memory (especially for large vocabularies)")
print("β’ Memory scales linearly with vocab_size Γ embed_dim")
print("β’ Consider vocabulary pruning for memory-constrained environments")
# Positional encoding memory comparison
print(f"\nπ Positional Encoding Memory Comparison (embed_dim=512, max_seq_len=2048):")
learned_params = 2048 * 512
learned_memory = learned_params * 4 / (1024 * 1024)
print(f"Learned PE: {learned_memory:.1f} MB ({learned_params:,} parameters)")
print(f"Sinusoidal PE: 0.0 MB (0 parameters - computed on-the-fly)")
print(f"No PE: 0.0 MB (0 parameters)")
print("\nπ Production Implications:")
print("β’ GPT-3's embedding table: ~2.4GB (50K vocab Γ 12K dims)")
print("β’ Learned PE adds memory but may improve task-specific performance")
print("β’ Sinusoidal PE saves memory and allows longer sequences")
# Run analysis when developing/testing this module
if __name__ == "__main__":
analyze_embedding_memory_scaling()
# %% nbgrader={"grade": false, "grade_id": "lookup-performance", "solution": true}
def analyze_embedding_performance():
"""π Compare embedding lookup performance across different configurations."""
print("\nπ Analyzing Embedding Lookup Performance...")
import time
# Test different vocabulary sizes and batch configurations
vocab_sizes = [1_000, 10_000, 100_000]
embed_dim = 512
seq_len = 128
batch_sizes = [1, 16, 64, 256]
print(f"{'Vocab Size':<12} {'Batch Size':<12} {'Lookup Time (ms)':<18} {'Throughput (tokens/s)':<20}")
print("-" * 70)
for vocab_size in vocab_sizes:
# Create embedding layer
embed = Embedding(vocab_size, embed_dim)
for batch_size in batch_sizes:
# Create random token batch
tokens = Tensor(np.random.randint(0, vocab_size, (batch_size, seq_len)))
# Warmup
for _ in range(5):
_ = embed.forward(tokens)
# Time the lookup
start_time = time.time()
iterations = 100
for _ in range(iterations):
output = embed.forward(tokens)
end_time = time.time()
# Calculate metrics
total_time = end_time - start_time
avg_time_ms = (total_time / iterations) * 1000
total_tokens = batch_size * seq_len * iterations
throughput = total_tokens / total_time
print(f"{vocab_size:<12,} {batch_size:<12} {avg_time_ms:<18.2f} {throughput:<20,.0f}")
print("\nπ‘ Performance Insights:")
print("β’ Lookup time is O(1) per token - vocabulary size doesn't affect individual lookups")
print("β’ Larger batches improve throughput due to vectorization")
print("β’ Memory bandwidth becomes bottleneck for large embedding dimensions")
print("β’ Cache locality important for repeated token patterns")
# Run analysis when developing/testing this module
if __name__ == "__main__":
analyze_embedding_performance()
# %% nbgrader={"grade": false, "grade_id": "position-encoding-comparison", "solution": true}
def analyze_positional_encoding_strategies():
"""π Compare different positional encoding approaches and trade-offs."""
print("\nπ Analyzing Positional Encoding Trade-offs...")
max_seq_len = 512
embed_dim = 256
# Create both types of positional encodings
learned_pe = PositionalEncoding(max_seq_len, embed_dim)
sinusoidal_pe = create_sinusoidal_embeddings(max_seq_len, embed_dim)
# Analyze memory footprint
learned_params = max_seq_len * embed_dim
learned_memory = learned_params * 4 / (1024 * 1024) # MB
print(f"π Memory Comparison:")
print(f"Learned PE: {learned_memory:.2f} MB ({learned_params:,} parameters)")
print(f"Sinusoidal PE: 0.00 MB (0 parameters)")
# Analyze encoding patterns
print(f"\nπ Encoding Pattern Analysis:")
# Test sample sequences
test_input = Tensor(np.random.randn(1, 10, embed_dim))
learned_output = learned_pe.forward(test_input)
# For sinusoidal, manually add to match learned interface
sin_encodings = sinusoidal_pe.data[:10][np.newaxis, :, :] # (1, 10, embed_dim)
sinusoidal_output = Tensor(test_input.data + sin_encodings)
# Analyze variance across positions
learned_var = np.var(learned_output.data, axis=1).mean() # Variance across positions
sin_var = np.var(sinusoidal_output.data, axis=1).mean()
print(f"Position variance (learned): {learned_var:.4f}")
print(f"Position variance (sinusoidal): {sin_var:.4f}")
# Check extrapolation capability
print(f"\nπ Extrapolation Analysis:")
extended_length = max_seq_len + 100
try:
# Learned PE cannot handle longer sequences
extended_learned = PositionalEncoding(extended_length, embed_dim)
print(f"Learned PE: Requires retraining for sequences > {max_seq_len}")
except:
print(f"Learned PE: Cannot handle sequences > {max_seq_len}")
# Sinusoidal can extrapolate
extended_sin = create_sinusoidal_embeddings(extended_length, embed_dim)
print(f"Sinusoidal PE: Can extrapolate to length {extended_length} (smooth continuation)")
print(f"\nπ Production Trade-offs:")
print(f"Learned PE:")
print(f" + Can learn task-specific positional patterns")
print(f" + May perform better for tasks with specific position dependencies")
print(f" - Requires additional memory and parameters")
print(f" - Fixed maximum sequence length")
print(f" - Needs training data for longer sequences")
print(f"\nSinusoidal PE:")
print(f" + Zero additional parameters")
print(f" + Can extrapolate to any sequence length")
print(f" + Provides rich, mathematically grounded position signals")
print(f" - Cannot adapt to task-specific position patterns")
print(f" - May be suboptimal for highly position-dependent tasks")
# Run analysis when developing/testing this module
if __name__ == "__main__":
analyze_positional_encoding_strategies()
# %% [markdown]
"""
## π§ͺ Module Integration Test
Let's test our complete embedding system to ensure everything works together correctly.
"""
# %% nbgrader={"grade": true, "grade_id": "module-test", "locked": true, "points": 20}
def test_module():
"""π§ͺ Module Test: Complete Integration
Comprehensive test of entire embeddings module functionality.
This final test ensures all components work together and the module
is ready for integration with attention mechanisms and transformers.
"""
print("π§ͺ RUNNING MODULE INTEGRATION TEST")
print("=" * 50)
# Run all unit tests
print("Running unit tests...")
test_unit_embedding()
test_unit_positional_encoding()
test_unit_sinusoidal_embeddings()
test_unit_complete_embedding_system()
print("\nRunning integration scenarios...")
# Integration Test 1: Realistic NLP pipeline
print("π¬ Integration Test: NLP Pipeline Simulation...")
# Simulate a small transformer setup
vocab_size = 1000
embed_dim = 128
max_seq_len = 64
# Create embedding layer
embed_layer = EmbeddingLayer(
vocab_size=vocab_size,
embed_dim=embed_dim,
max_seq_len=max_seq_len,
pos_encoding='learned',
scale_embeddings=True
)
# Simulate tokenized sentences
sentences = [
[1, 15, 42, 7, 99], # "the cat sat on mat"
[23, 7, 15, 88], # "dog chased the ball"
[1, 67, 15, 42, 7, 99, 34] # "the big cat sat on mat here"
]
# Process each sentence
outputs = []
for sentence in sentences:
tokens = Tensor(sentence)
embedded = embed_layer.forward(tokens)
outputs.append(embedded)
# Verify output shape
expected_shape = (len(sentence), embed_dim)
assert embedded.shape == expected_shape, f"Wrong shape for sentence: {embedded.shape} != {expected_shape}"
print("β
Variable length sentence processing works!")
# Integration Test 2: Batch processing with padding
print("π¬ Integration Test: Batched Processing...")
# Create padded batch (real-world scenario)
max_len = max(len(s) for s in sentences)
batch_tokens = []
for sentence in sentences:
# Pad with zeros (assuming 0 is padding token)
padded = sentence + [0] * (max_len - len(sentence))
batch_tokens.append(padded)
batch_tensor = Tensor(batch_tokens) # (3, 7)
batch_output = embed_layer.forward(batch_tensor)
assert batch_output.shape == (3, max_len, embed_dim), f"Batch output shape incorrect: {batch_output.shape}"
print("β
Batch processing with padding works!")
# Integration Test 3: Different positional encoding types
print("π¬ Integration Test: Position Encoding Variants...")
test_tokens = Tensor([[1, 2, 3, 4, 5]])
# Test all position encoding types
for pe_type in ['learned', 'sinusoidal', None]:
embed_test = EmbeddingLayer(
vocab_size=100,
embed_dim=64,
pos_encoding=pe_type
)
output = embed_test.forward(test_tokens)
assert output.shape == (1, 5, 64), f"PE type {pe_type} failed shape test"
# Check parameter counts
if pe_type == 'learned':
assert len(embed_test.parameters()) == 2, f"Learned PE should have 2 param tensors"
else:
assert len(embed_test.parameters()) == 1, f"PE type {pe_type} should have 1 param tensor"
print("β
All positional encoding variants work!")
# Integration Test 4: Memory efficiency check
print("π¬ Integration Test: Memory Efficiency...")
# Test that we're not creating unnecessary copies
large_embed = EmbeddingLayer(vocab_size=10000, embed_dim=512)
test_batch = Tensor(np.random.randint(0, 10000, (32, 128)))
# Multiple forward passes should not accumulate memory (in production)
for _ in range(5):
output = large_embed.forward(test_batch)
assert output.shape == (32, 128, 512), "Large batch processing failed"
print("β
Memory efficiency check passed!")
print("\n" + "=" * 50)
print("π ALL TESTS PASSED! Module ready for export.")
print("π Summary of capabilities built:")
print(" β’ Token embedding with trainable lookup tables")
print(" β’ Learned positional encodings for position awareness")
print(" β’ Sinusoidal positional encodings for extrapolation")
print(" β’ Complete embedding system for NLP pipelines")
print(" β’ Efficient batch processing and memory management")
print("\nπ Ready for: Attention mechanisms, transformers, and language models!")
print("Export with: tito module complete 11")
# %% [markdown]
"""
## π€ ML Systems Thinking: Embedding Foundations
### Question 1: Memory Scaling
You implemented an embedding layer with vocab_size=50,000 and embed_dim=512.
- How many parameters does this embedding table contain? _____ million
- If using FP32 (4 bytes per parameter), how much memory does this use? _____ MB
- If you double the embedding dimension to 1024, what happens to memory usage? _____ MB
### Question 2: Lookup Complexity
Your embedding layer performs table lookups for token indices.
- What is the time complexity of looking up a single token? O(_____)
- For a batch of 32 sequences, each of length 128, how many lookup operations? _____
- Why doesn't vocabulary size affect individual lookup performance? _____
### Question 3: Positional Encoding Trade-offs
You implemented both learned and sinusoidal positional encodings.
- Learned PE for max_seq_len=2048, embed_dim=512 adds how many parameters? _____
- What happens if you try to process a sequence longer than max_seq_len with learned PE? _____
- Which type of PE can handle sequences longer than seen during training? _____
### Question 4: Production Implications
Your complete EmbeddingLayer combines token and positional embeddings.
- In GPT-3 (vocab_sizeβ50K, embed_dimβ12K), approximately what percentage of total parameters are in the embedding table? _____%
- If you wanted to reduce memory usage by 50%, which would be more effective: halving vocab_size or halving embed_dim? _____
- Why might sinusoidal PE be preferred for models that need to handle variable sequence lengths? _____
"""
# %% [markdown]
"""
## β Aha Moment: Tokens Become Vectors
**What you built:** An embedding layer that converts token IDs to dense vectors.
**Why it matters:** Tokens are just integers (like word IDs), but embeddings give them meaning!
Each token gets a learned vector that captures its semantic properties. Similar words end up
with similar vectorsβthis is how models understand language.
In the next module, you'll use attention to let these embeddings interact with each other.
"""
# %%
def demo_embeddings():
"""π― See tokens become vectors."""
print("π― AHA MOMENT: Tokens Become Vectors")
print("=" * 45)
# Create embedding layer: 100 vocab, 32-dimensional embeddings
embed = Embedding(vocab_size=100, embed_dim=32)
# Some token IDs
tokens = Tensor(np.array([5, 10, 15]))
# Look up embeddings
vectors = embed(tokens)
print(f"Token IDs: {tokens.data}")
print(f"Embedding shape: {vectors.shape} β 3 tokens, 32 dims each")
print(f"\nToken 5 vector (first 5 dims): {vectors.data[0, :5].round(3)}")
print(f"Token 10 vector (first 5 dims): {vectors.data[1, :5].round(3)}")
print("\n⨠Each token has its own learned representation!")
# %%
if __name__ == "__main__":
test_module()
print("\n")
demo_embeddings()
# %% [markdown]
"""
## π MODULE SUMMARY: Embeddings
Congratulations! You've built a complete embedding system that transforms discrete tokens into learnable representations!
### Key Accomplishments
- Built `Embedding` class with efficient token-to-vector lookup (10M+ token support)
- Implemented `PositionalEncoding` for learnable position awareness (unlimited sequence patterns)
- Created `create_sinusoidal_embeddings` with mathematical position encoding (extrapolates beyond training)
- Developed `EmbeddingLayer` integrating both token and positional embeddings (production-ready)
- Analyzed embedding memory scaling and lookup performance trade-offs
- All tests pass β
(validated by `test_module()`)
### Technical Achievements
- **Memory Efficiency**: Optimized embedding table storage and lookup patterns
- **Flexible Architecture**: Support for learned, sinusoidal, and no positional encoding
- **Batch Processing**: Efficient handling of variable-length sequences with padding
- **Systems Analysis**: Deep understanding of memory vs performance trade-offs
### Ready for Next Steps
Your embeddings implementation enables attention mechanisms and transformer architectures!
The combination of token and positional embeddings provides the foundation for sequence-to-sequence models.
**Next**: Module 12 will add attention mechanisms for context-aware representations!
### Production Context
You've built the exact embedding patterns used in:
- **GPT models**: Token embeddings + learned positional encoding
- **BERT models**: Token embeddings + sinusoidal positional encoding
- **T5 models**: Relative positional embeddings (variant of your implementations)
Export with: `tito module complete 11`
""" |