From db58925d7f26385d10d9b74e2b5b80eeddcaaa1b Mon Sep 17 00:00:00 2001 From: Sebastian Raschka Date: Fri, 28 Feb 2025 09:57:41 -0600 Subject: [PATCH] Add BPE from scratch link (#550) --- ch02/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ch02/README.md b/ch02/README.md index bb603ee..1193e5a 100644 --- a/ch02/README.md +++ b/ch02/README.md @@ -13,3 +13,5 @@ - [03_bonus_embedding-vs-matmul](03_bonus_embedding-vs-matmul) contains optional (bonus) code to explain that embedding layers and fully connected layers applied to one-hot encoded vectors are equivalent. - [04_bonus_dataloader-intuition](04_bonus_dataloader-intuition) contains optional (bonus) code to explain the data loader more intuitively with simple numbers rather than text. + +- [05_bpe-from-scratch](05_bpe-from-scratch) contains (bonus) code that implements and trains a GPT-2 BPE tokenizer from scratch.