From 980f81b9fa1c045d9119fbc771dd47b69bbd34d5 Mon Sep 17 00:00:00 2001 From: Fabrizio Damicelli <40115969+fabridamicelli@users.noreply.github.com> Date: Mon, 25 Apr 2022 08:28:01 +0200 Subject: [PATCH] Fix typo: reprsented -> represented (#390) --- 07_sizing_and_tta.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/07_sizing_and_tta.ipynb b/07_sizing_and_tta.ipynb index 528e6fa5c..b25368507 100644 --- a/07_sizing_and_tta.ipynb +++ b/07_sizing_and_tta.ipynb @@ -827,7 +827,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "The third image is built by adding 0.3 times the first one and 0.7 times the second. In this example, should the model predict \"church\" or \"gas station\"? The right answer is 30% church and 70% gas station, since that's what we'll get if we take the linear combination of the one-hot-encoded targets. For instance, suppose we have 10 classes and \"church\" is represented by the index 2 and \"gas station\" is reprsented by the index 7, the one-hot-encoded representations are:\n", + "The third image is built by adding 0.3 times the first one and 0.7 times the second. In this example, should the model predict \"church\" or \"gas station\"? The right answer is 30% church and 70% gas station, since that's what we'll get if we take the linear combination of the one-hot-encoded targets. For instance, suppose we have 10 classes and \"church\" is represented by the index 2 and \"gas station\" is represented by the index 7, the one-hot-encoded representations are:\n", "```\n", "[0, 0, 1, 0, 0, 0, 0, 0, 0, 0] and [0, 0, 0, 0, 0, 0, 0, 1, 0, 0]\n", "```\n",