From 0eab244f006547daf81bfde8998a70037c5e4c66 Mon Sep 17 00:00:00 2001 From: rasbt Date: Wed, 24 Jan 2024 07:09:35 -0600 Subject: [PATCH] add full toc --- README.md | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index ef19263..74a90b9 100644 --- a/README.md +++ b/README.md @@ -29,13 +29,17 @@ Alternatively, you can view this and other files on GitHub at [https://github.co

-| Chapter title | Main code (for quick access) | All code + supplementary | -| ----------------------------------------- | ------------------------------------------------------------ | ---------------------------- | -| Ch 1: Understanding Large Language Models | No code | No code | -| Ch 2: Working with Text Data | - [ch02.ipynb](ch02/01_main-chapter-code/ch02.ipynb)
- [dataloader.ipynb](ch02/01_main-chapter-code/dataloader.ipynb) (summary)
- [exercise-solutions.ipynb](ch02/01_main-chapter-code/exercise-solutions.ipynb) | [./ch02](./ch02) | -| Ch 3: Coding Attention Mechanisms | - [ch03.ipynb](ch03/01_main-chapter-code/ch03.ipynb)
- [multihead-attention.ipynb](ch03/01_main-chapter-code/multihead-attention.ipynb) (summary) | [./ch03](./ch03) | -| ... | ... | ... | -| Appendix A: Introduction to PyTorch* | - [code-part1.ipynb](appendix-A/03_main-chapter-code/code-part1.ipynb)
- [code-part2.ipynb](appendix-A/03_main-chapter-code/code-part2.ipynb)
- [DDP-script.py](appendix-A/03_main-chapter-code/DDP-script.py)
- [exercise-solutions.ipynb](appendix-A/03_main-chapter-code/exercise-solutions.ipynb) | [./appendix-A](./appendix-A) | +| Chapter Title | Main Code (for quick access) | All Code + Supplementary | +|------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|-------------------------------| +| Ch 1: Understanding Large Language Models | No code | No code | +| Ch 2: Working with Text Data | - [ch02.ipynb](ch02/01_main-chapter-code/ch02.ipynb)
- [dataloader.ipynb](ch02/01_main-chapter-code/dataloader.ipynb) (summary)
- [exercise-solutions.ipynb](ch02/01_main-chapter-code/exercise-solutions.ipynb) | [./ch02](./ch02) | +| Ch 3: Coding Attention Mechanisms | - [ch03.ipynb](ch03/01_main-chapter-code/ch03.ipynb)
- [multihead-attention.ipynb](ch03/01_main-chapter-code/multihead-attention.ipynb) (summary) | [./ch03](./ch03) | +| Ch 4: Implementing a GPT Model from Scratch | ... | ... | +| Ch 5: Pretraining on Unlabeled Data | ... | ... | +| Ch 6: Finetuning for Text Classification | ... | ... | +| Ch 7: Finetuning with Human Feedback | ... | ... | +| Ch 8: Using Large Language Models in Practice | ... | ... | +| Appendix A: Introduction to PyTorch* | - [code-part1.ipynb](appendix-A/03_main-chapter-code/code-part1.ipynb)
- [code-part2.ipynb](appendix-A/03_main-chapter-code/code-part2.ipynb)
- [DDP-script.py](appendix-A/03_main-chapter-code/DDP-script.py)
- [exercise-solutions.ipynb](appendix-A/03_main-chapter-code/exercise-solutions.ipynb) | [./appendix-A](./appendix-A) | (* Please see [this](appendix-A/01_optional-python-setup-preferences) and [this](appendix-A/02_installing-python-libraries) folder if you need more guidance on installing Python and Python packages.)