From 4b5a739ca4bb3e76ee2c0c4ffe21a908a568d7c6 Mon Sep 17 00:00:00 2001 From: Steven Borg Date: Tue, 17 Mar 2020 09:11:22 -0700 Subject: [PATCH] Correct spelling 15_arch_details - transfert to transfer Replace "transfert learning" with "transfer learning" --- 15_arch_details.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/15_arch_details.ipynb b/15_arch_details.ipynb index c2c49d3..7634d69 100644 --- a/15_arch_details.ipynb +++ b/15_arch_details.ipynb @@ -389,7 +389,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "More importantly, to take full advantage of transfer learning, we have to define a custom *splitter*. A splitter is a function that tells the fastai library how to split the model in several parameter groups. This is what is used behind the scenes not only train the head of a model when we do transfert learning. \n", + "More importantly, to take full advantage of transfer learning, we have to define a custom *splitter*. A splitter is a function that tells the fastai library how to split the model in several parameter groups. This is what is used behind the scenes not only train the head of a model when we do transfer learning. \n", "\n", "Here we want two parameter groups: one for the encoder and one for the head. We can thus define the following splitter (`params` is jsut a function that returns all parameters of a given module):" ]