diff --git a/README.md b/README.md index 9d7fd5a..e116520 100644 --- a/README.md +++ b/README.md @@ -35,11 +35,15 @@ | 第2章: 处理文本数据 | - [ch02.ipynb](ch02/01_main-chapter-code/ch02.ipynb)
- [dataloader.ipynb](ch02/01_main-chapter-code/dataloader.ipynb) (摘要)
- [exercise-solutions.ipynb](ch02/01_main-chapter-code/exercise-solutions.ipynb) | [./ch02](./ch02) | | 第3章: 编写注意力机制 | - [ch03.ipynb](ch03/01_main-chapter-code/ch03.ipynb)
- [multihead-attention.ipynb](ch03/01_main-chapter-code/multihead-attention.ipynb) (摘要)
- [exercise-solutions.ipynb](ch03/01_main-chapter-code/exercise-solutions.ipynb)| [./ch03](./ch03) | | 第4章: 从零开始实现GPT模型 | - [ch04.ipynb](ch04/01_main-chapter-code/ch04.ipynb)
- [gpt.py](ch04/01_main-chapter-code/gpt.py) (摘要)
- [exercise-solutions.ipynb](ch04/01_main-chapter-code/exercise-solutions.ipynb) | [./ch04](./ch04) | -| 第5章: 使用未标记数据进行预训练 | 2024年第1季度 | ... | +| 第5章: 使用未标记数据进行预训练 | - [ch05.ipynb](ch05/01_main-chapter-code/ch05.ipynb)
- [train.py](ch05/01_main-chapter-code/train.py) (摘要)
- [generate.py](ch05/01_main-chapter-code/generate.py) (摘要)
- [exercise-solutions.ipynb](ch05/01_main-chapter-code/exercise-solutions.ipynb) | [./ch05](./ch05) | ... | | 第6章: 用于文本分类的微调 | 2024年第2季度 | ... | | 第7章: 使用人类反馈进行微调 | 2024年第2季度 | ... | | 第8章: 在实践中使用大型语言模型 | 2024年第2/3季度 | ... | | 附录A: 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) | +| Appendix B: 参考文献和进一步的阅读材料 | 没有代码 | - | +| Appendix C: 练习 | 没有代码 | - | +| Appendix D: 为训练过程添加额外的功能和特性 | - [appendix-D.ipynb](appendix-D/01_main-chapter-code/appendix-D.ipynb) | [./appendix-D](./appendix-D) | +|
||| (* 如果您需要关于安装Python和Python包的更多指导,请参阅[附录1](appendix-A/01_optional-python-setup-preferences)和[附录2](appendix-A/02_installing-python-libraries)文件夹。) @@ -85,6 +89,7 @@ | 邹雨衡 | 第3章贡献者 | || | 陈嘉诺 | 第4章贡献者 | || | 高立业 | 第4章贡献者 | |[@Tangent-90C](https://github.com/Tangent-90C)| +| 丁悦 | 第5章贡献者 | 哈尔滨工业大学(威海)|[@dingyue772](https://github.com/dingyue772)| | 周景林 | 附录贡献者 | |[@Beyondzjl](https://github.com/Beyondzjl)| | 陈可为 | 附录贡献者 | |[@Ethan-Chen-plus](https://github.com/Ethan-Chen-plus)| diff --git a/readme.md b/readme.md deleted file mode 100644 index a509e0f..0000000 --- a/readme.md +++ /dev/null @@ -1,55 +0,0 @@ -# 从零开始构建大型语言模型 - -本存储库包含了编码、预训练和微调类似于GPT的LLM的代码,并且是书籍[从零开始构建大型语言模型](http://mng.bz/orYv)的官方代码存储库。 - -(如果您从Manning网站下载了代码包,请考虑访问GitHub上的官方代码存储库:[https://github.com/rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch)。) - -
-
- - - -在[*从零开始构建大型语言模型*](http://mng.bz/orYv)中,您将从内部了解LLMs的工作原理。在本书中,我将逐步指导您创建自己的LLM,用清晰的文本、图表和示例解释每个阶段。 - -本书描述的用于培训和开发您自己的用于教育目的的小型但功能齐全模型的方法,与创建ChatGPT等大规模基础模型所使用的方法相似。 - -- 官方[源代码存储库链接](https://github.com/rasbt/LLMs-from-scratch) -- [Manning早期访问版本链接](http://mng.bz/orYv) -- ISBN 9781633437166 -- 预计于2025年初出版 - -
-
- - -# 目录 - -请注意,`Readme.md`文件是一个Markdown(.md)文件。如果您从Manning网站下载了此代码包,并在本地计算机上查看它,我建议使用Markdown编辑器或预览器进行正确的查看。如果您尚未安装Markdown编辑器,[MarkText](https://www.marktext.cc)是一个不错的免费选择。 - -或者,您可以在GitHub上查看本文和其他文件:[https://github.com/rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch)。 - -
-
- -| 章节标题 | 主要代码(快速访问) | 所有代码 + 补充 | -|------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|-------------------------------| -| 第1章: 理解大型语言模型 | 没有代码 | 没有代码 | -| 第2章: 处理文本数据 | - [ch02.ipynb](ch02/01_main-chapter-code/ch02.ipynb)
- [dataloader.ipynb](ch02/01_main-chapter-code/dataloader.ipynb) (摘要)
- [exercise-solutions.ipynb](ch02/01_main-chapter-code/exercise-solutions.ipynb) | [./ch02](./ch02) | -| 第3章: 编写注意力机制 | - [ch03.ipynb](ch03/01_main-chapter-code/ch03.ipynb)
- [multihead-attention.ipynb](ch03/01_main-chapter-code/multihead-attention.ipynb) (摘要)
- [exercise-solutions.ipynb](ch03/01_main-chapter-code/exercise-solutions.ipynb)| [./ch03](./ch03) | -| 第4章: 从零开始实现GPT模型 | - [ch04.ipynb](ch04/01_main-chapter-code/ch04.ipynb)
- [gpt.py](ch04/01_main-chapter-code/gpt.py) (摘要)
- [exercise-solutions.ipynb](ch04/01_main-chapter-code/exercise-solutions.ipynb) | [./ch04](./ch04) | -| 第5章: 使用未标记数据进行预训练 | 2024年第1季度 | ... | -| 第6章: 用于文本分类的微调 | 2024年第2季度 | ... | -| 第7章: 使用人类反馈进行微调 | 2024年第2季度 | ... | -| 第8章: 在实践中使用大型语言模型 | 2024年第2/3季度 | ... | -| 附录A: 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) | - -(* 如果您需要关于安装Python和Python包的更多指导,请参阅[此](appendix-A/01_optional-python-setup-preferences)和[此](appendix-A/02_installing-python-libraries)文件夹。) - - - -
-
- - - -(这是一个总结了本书内容的思维模型。) \ No newline at end of file