Skip to content

Commit 5a835fe

Browse files
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"
1 parent 2e722af commit 5a835fe

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

01_intro.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1503,7 +1503,7 @@
15031503
"cell_type": "markdown",
15041504
"metadata": {},
15051505
"source": [
1506-
"In the third line we define a function, `is_cat`, labels cats based on a filename rule provided by the dataset creators:\n",
1506+
"In the third line we define a function, `is_cat`, which labels cats based on a filename rule provided by the dataset creators:\n",
15071507
"```python\n",
15081508
"def is_cat(x): return x[0].isupper()\n",
15091509
"```"
@@ -1513,7 +1513,7 @@
15131513
"cell_type": "markdown",
15141514
"metadata": {},
15151515
"source": [
1516-
"We use that function in the fourth line, which tells fastai what kind of dataset we have, and how it is structured:\n",
1516+
"We use that function in the fourth line, which tells fastai what kind of dataset we have and how it is structured:\n",
15171517
"\n",
15181518
"```python\n",
15191519
"dls = ImageDataLoaders.from_name_func(\n",

0 commit comments

Comments
 (0)