From 55ced1d95ed7ed1191346b65a2dee457fa0a5ad0 Mon Sep 17 00:00:00 2001 From: Sebastian Raschka Date: Tue, 6 Feb 2024 07:38:52 -0600 Subject: [PATCH 1/2] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 0ed4cc7..ab0a439 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Build a Large Language Model (From Scratch) +This repository contains the code for coding, pretraining, and finetuning a GPT-like LLM and is the official code repository for the book [Build a Large Language Model (From Scratch)](http://mng.bz/orYv). + (If you downloaded the code bundle from the Manning website, please consider visiting the official code repository on GitHub at [https://github.com/rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch).)
From a61583e31ef537e846bfefeb83f33ea70456a7cc Mon Sep 17 00:00:00 2001 From: Intelligence-Manifesto <155522535+Intelligence-Manifesto@users.noreply.github.com> Date: Fri, 9 Feb 2024 04:18:07 +0800 Subject: [PATCH 2/2] if -> in if -> in --- ch02/01_main-chapter-code/ch02.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch02/01_main-chapter-code/ch02.ipynb b/ch02/01_main-chapter-code/ch02.ipynb index 9d1efbf..ba0d757 100644 --- a/ch02/01_main-chapter-code/ch02.ipynb +++ b/ch02/01_main-chapter-code/ch02.ipynb @@ -1412,7 +1412,7 @@ "id": "a7bbf625-4f36-491d-87b4-3969efb784b0", "metadata": {}, "source": [ - "- Note that the above is the 4th row if the `embedding_layer` weight matrix\n", + "- Note that the above is the 4th row in the `embedding_layer` weight matrix\n", "- To embed all three `input_ids` values above, we do" ] },