mirror of
https://github.com/fastai/fastbook.git
synced 2025-04-05 02:10:48 +00:00
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:
parent
2e722af6bc
commit
5a835fee67
@ -1503,7 +1503,7 @@
|
|||||||
"cell_type": "markdown",
|
"cell_type": "markdown",
|
||||||
"metadata": {},
|
"metadata": {},
|
||||||
"source": [
|
"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",
|
"```python\n",
|
||||||
"def is_cat(x): return x[0].isupper()\n",
|
"def is_cat(x): return x[0].isupper()\n",
|
||||||
"```"
|
"```"
|
||||||
@ -1513,7 +1513,7 @@
|
|||||||
"cell_type": "markdown",
|
"cell_type": "markdown",
|
||||||
"metadata": {},
|
"metadata": {},
|
||||||
"source": [
|
"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",
|
"\n",
|
||||||
"```python\n",
|
"```python\n",
|
||||||
"dls = ImageDataLoaders.from_name_func(\n",
|
"dls = ImageDataLoaders.from_name_func(\n",
|
||||||
|
Loading…
Reference in New Issue
Block a user