From 38390b2a8d3c13c15d0786042b10af201d118464 Mon Sep 17 00:00:00 2001 From: TITC <35098797+TITC@users.noreply.github.com> Date: Tue, 13 Aug 2024 20:09:05 +0800 Subject: [PATCH] track tokens seen in chapter5, track examples seen in chapter6 (#319) --- ch06/01_main-chapter-code/ch06.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch06/01_main-chapter-code/ch06.ipynb b/ch06/01_main-chapter-code/ch06.ipynb index 71952a4..f80a03f 100644 --- a/ch06/01_main-chapter-code/ch06.ipynb +++ b/ch06/01_main-chapter-code/ch06.ipynb @@ -1838,7 +1838,7 @@ "- In this section, we define and use the training function to improve the classification accuracy of the model\n", "- The `train_classifier_simple` function below is practically the same as the `train_model_simple` function we used for pretraining the model in chapter 5\n", "- The only two differences are that we now \n", - " 1. track the number of training examples seen (`examples_seen`) instead of the number of examples seen\n", + " 1. track the number of training examples seen (`examples_seen`) instead of the number of tokens seen\n", " 2. calculate the accuracy after each epoch instead of printing a sample text after each epoch" ] },