fix grammatical errors in 01_intro.ipynb (#407)

* fix grammatical error in 01_intro.ipynb

change "we define a function, 'is_cat', labels cats" to "we define a function, 'is_cat', which labels cats"

* fix grammar

no comma needed after have since the clause after have is not a complete sentence

* fix grammar

change "check will" to "checks will"
This commit is contained in:
Austin Taylor 2022-04-25 02:16:11 -04:00 committed by GitHub
parent 2e722af6bc
commit 5a835fee67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1503,7 +1503,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"In the third line we define a function, `is_cat`, labels cats based on a filename rule provided by the dataset creators:\n",
"In the third line we define a function, `is_cat`, which labels cats based on a filename rule provided by the dataset creators:\n",
"```python\n",
"def is_cat(x): return x[0].isupper()\n",
"```"
@ -1513,7 +1513,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"We use that function in the fourth line, which tells fastai what kind of dataset we have, and how it is structured:\n",
"We use that function in the fourth line, which tells fastai what kind of dataset we have and how it is structured:\n",
"\n",
"```python\n",
"dls = ImageDataLoaders.from_name_func(\n",