From 2df81f59d3204f126573667d1149858cbcd49623 Mon Sep 17 00:00:00 2001 From: rasbt Date: Thu, 9 May 2024 07:25:52 -0500 Subject: [PATCH] spelling improvements --- ch06/01_main-chapter-code/ch06.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ch06/01_main-chapter-code/ch06.ipynb b/ch06/01_main-chapter-code/ch06.ipynb index 3e9af84..aadb4ba 100644 --- a/ch06/01_main-chapter-code/ch06.ipynb +++ b/ch06/01_main-chapter-code/ch06.ipynb @@ -718,7 +718,7 @@ "source": [ "from torch.utils.data import DataLoader\n", "\n", - "num_workers = 0 # For compatibility with most computers\n", + "num_workers = 0\n", "batch_size = 8\n", "\n", "torch.manual_seed(123)\n", @@ -991,7 +991,7 @@ "id": "1ce39ed0-2c77-410d-8392-dd15d4b22016", "metadata": {}, "source": [ - "- As we can see, the model is not very good at following instruction\n", + "- As we can see, the model is not very good at following instructions\n", "- This is expected, since it has only been pretrained and not instruction-finetuned (instruction finetuning will be covered in the next chapter)" ] },