From 0f986b9b35548d8ba39365315f3653936fee9a37 Mon Sep 17 00:00:00 2001 From: akfoster Date: Fri, 7 Jul 2023 21:58:24 -0600 Subject: [PATCH] Update 05_pet_breeds.ipynb spelling error. referencing "subsequence characters" when I believe it is supposed to read "subsequent characters" --- 05_pet_breeds.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/05_pet_breeds.ipynb b/05_pet_breeds.ipynb index 2f39d3a..1d829ac 100644 --- a/05_pet_breeds.ipynb +++ b/05_pet_breeds.ipynb @@ -208,7 +208,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "This regular expression plucks out all the characters leading up to the last underscore character, as long as the subsequence characters are numerical digits and then the JPEG file extension.\n", + "This regular expression plucks out all the characters leading up to the last underscore character, as long as the subsequent characters are numerical digits and then the JPEG file extension.\n", "\n", "Now that we confirmed the regular expression works for the example, let's use it to label the whole dataset. fastai comes with many classes to help with labeling. For labeling with regular expressions, we can use the `RegexLabeller` class. In this example we use the data block API we saw in <> (in fact, we nearly always use the data block API—it's so much more flexible than the simple factory methods we saw in <>):" ]