Files
LLMs-from-scratch/ch07/01_main-chapter-code/README.md
2024-06-19 20:21:14 -05:00

11 lines
648 B
Markdown

# Chapter 7: Finetuning to Follow Instructions
### Main Chapter Code
- [ch07.ipynb](ch07.ipynb) contains all the code as it appears in the chapter
- [previous_chapters.py](previous_chapters.py) is a Python module that contains the GPT model we coded and trained in previous chapters, alongside many utility functions, which we reuse in this chapter
- [gpt_download.py](gpt_download.py) contains the utility functions for downloading the pretrained GPT model weights
### Optional Code
- [load-finetuned-model.ipynb](load-finetuned-model.ipynb) is a standalone Jupyter notebook to load the instruction finetuned model we created in this chapter