Skip to content

Commit

Permalink
some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
pritesh2000 committed Sep 2, 2024
1 parent 85a4644 commit dba5fdc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions 04_pytorch_custom_datasets.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
"source": [
"## 1. Get data\n",
"\n",
"First thing's first we need some data.\n",
"First things first we need some data.\n",
"\n",
"And like any good cooking show, some data has already been prepared for us.\n",
"\n",
Expand Down Expand Up @@ -270,7 +270,7 @@
"\n",
"In our case, we have images of pizza, steak and sushi in standard image classification format.\n",
"\n",
"Image classification format contains separate classes of images in seperate directories titled with a particular class name.\n",
"Image classification format contains separate classes of images in separate directories titled with a particular class name.\n",
"\n",
"For example, all images of `pizza` are contained in the `pizza/` directory.\n",
"\n",
Expand Down Expand Up @@ -973,7 +973,7 @@
"\n",
"We'll do so using [`torch.utils.data.DataLoader`](https://pytorch.org/docs/stable/data.html#torch.utils.data.DataLoader).\n",
"\n",
"Turning our `Dataset`'s into `DataLoader`'s makes them iterable so a model can go through learn the relationships between samples and targets (features and labels).\n",
"Turning our `Dataset`'s into `DataLoader`'s makes them iterable so a model can go through and learn the relationships between samples and targets (features and labels).\n",
"\n",
"To keep things simple, we'll use a `batch_size=1` and `num_workers=1`.\n",
"\n",
Expand Down Expand Up @@ -1759,7 +1759,7 @@
"source": [
"They sure do!\n",
"\n",
"Let's now take a lot at some other forms of data transforms."
"Let's now take a look at some other forms of data transforms."
]
},
{
Expand All @@ -1778,7 +1778,7 @@
"\n",
"Or cropping it or randomly erasing a portion or randomly rotating them.\n",
"\n",
"Doing this kinds of transforms is often referred to as **data augmentation**.\n",
"Doing these kinds of transforms is often referred to as **data augmentation**.\n",
"\n",
"**Data augmentation** is the process of altering your data in such a way that you *artificially* increase the diversity of your training set.\n",
"\n",
Expand Down

0 comments on commit dba5fdc

Please sign in to comment.