From 858f30da3915e20fb702ed3ab3175d8173f7c223 Mon Sep 17 00:00:00 2001 From: Lee Yi Jie Joel Date: Sat, 20 Jun 2020 19:36:34 +0800 Subject: [PATCH] Minor Typo in 10_nlp.ipynb Change `. this` to `. This` --- 10_nlp.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/10_nlp.ipynb b/10_nlp.ipynb index 616b510..285b721 100644 --- a/10_nlp.ipynb +++ b/10_nlp.ipynb @@ -739,7 +739,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "When dealing with images, we needed to resize them all to the same height and width before grouping them together in a mini-batch so they could stack together efficiently in a single tensor. Here it's going to be a little different, because one cannot simply resize text to a desired length. Also, we want our language model to read text in order, so that it can efficiently predict what the next word is. this means that each new batch should begin precisely where the previous one left off.\n", + "When dealing with images, we needed to resize them all to the same height and width before grouping them together in a mini-batch so they could stack together efficiently in a single tensor. Here it's going to be a little different, because one cannot simply resize text to a desired length. Also, we want our language model to read text in order, so that it can efficiently predict what the next word is. This means that each new batch should begin precisely where the previous one left off.\n", "\n", "Suppose we have the following text:\n", "\n",