Add BPE from scratch link (#550)

This commit is contained in:
Sebastian Raschka 2025-02-28 09:57:41 -06:00 committed by GitHub
parent 80c95987c1
commit db58925d7f

View File

@ -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.