From 46eec9756b1bd757c4e4fa40ddf4216f6c889dbc Mon Sep 17 00:00:00 2001 From: Esther Guo Date: Thu, 21 Nov 2024 15:30:02 +0100 Subject: [PATCH] Update 01_intro.ipynb seems like a typo from the context --- 01_intro.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01_intro.ipynb b/01_intro.ipynb index f41af673d..b3b8374f2 100644 --- a/01_intro.ipynb +++ b/01_intro.ipynb @@ -1645,7 +1645,7 @@ "1. Use one epoch to fit just those parts of the model necessary to get the new random head to work correctly with your dataset.\n", "1. Use the number of epochs requested when calling the method to fit the entire model, updating the weights of the later layers (especially the head) faster than the earlier layers (which, as we'll see, generally don't require many changes from the pretrained weights).\n", "\n", - "The *head* of a model is the part that is newly added to be specific to the new dataset. An *epoch* is one complete pass through the dataset. After calling `fit`, the results after each epoch are printed, showing the epoch number, the training and validation set losses (the \"measure of performance\" used for training the model), and any *metrics* you've requested (error rate, in this case)." + "The *head* of a model is the part that is newly added to be specific to the new dataset. An *epoch* is one complete pass through the dataset. After calling `fine_tune`, the results after each epoch are printed, showing the epoch number, the training and validation set losses (the \"measure of performance\" used for training the model), and any *metrics* you've requested (error rate, in this case)." ] }, {