spelling improvements

This commit is contained in:
rasbt 2024-05-09 07:25:52 -05:00
parent 80cd98884e
commit 2df81f59d3

View File

@ -718,7 +718,7 @@
"source": [ "source": [
"from torch.utils.data import DataLoader\n", "from torch.utils.data import DataLoader\n",
"\n", "\n",
"num_workers = 0 # For compatibility with most computers\n", "num_workers = 0\n",
"batch_size = 8\n", "batch_size = 8\n",
"\n", "\n",
"torch.manual_seed(123)\n", "torch.manual_seed(123)\n",
@ -991,7 +991,7 @@
"id": "1ce39ed0-2c77-410d-8392-dd15d4b22016", "id": "1ce39ed0-2c77-410d-8392-dd15d4b22016",
"metadata": {}, "metadata": {},
"source": [ "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)" "- This is expected, since it has only been pretrained and not instruction-finetuned (instruction finetuning will be covered in the next chapter)"
] ]
}, },