diff --git a/src/examples/evaluation.ipynb b/src/examples/evaluation.ipynb index c385cf07d..0b34ea99d 100644 --- a/src/examples/evaluation.ipynb +++ b/src/examples/evaluation.ipynb @@ -23,7 +23,7 @@ "Well, unlike other tasks such as QA, the result of a classification task is more or less binary (true/false).\n", "There are very few grey areas, as it is unlikely that a classification result is somewhat or \"half\" correct.\n", "\n", - "Mke sure that you have familiarized yourself with the `SingleLabelClassify` and `EmbeddingBasedClassify` prior to starting this notebook.\n" + "Make sure that you have familiarized yourself with the `SingleLabelClassify` and `EmbeddingBasedClassify` prior to starting this notebook.\n" ] }, { @@ -144,7 +144,7 @@ " examples: Sequence[Example[Input, ExpectedOutput]]\n", "```\n", "\n", - "We want the `input` in each `Example` to mimic the input of an actual task, therefore we must everytime include the text (chunk) and all possible labels.\n", + "We want the `input` in each `Example` to mimic the input of an actual task, therefore we must every time include the text (chunk) and all possible labels.\n", "The `expected_output` shall correspond to anything we wish to compare our generated output to.\n", "In this case, that means the correct class(es)." ]