Skip to content

Commit ac89ed3

Browse files
authored
Fix typos in FashionMNIST notebook (#3321)
1 parent 7795700 commit ac89ed3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/notebooks/FashionMNIST.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
"source": [
132132
"The code below first sets up transform using `torhvision transfroms` for converting images to pytorch tensors and normalizing the images.\n",
133133
"\n",
134-
"Next, We use `torchvision datasets` for dowloading the fashion mnist dataset and applying transforms which we defined above.\n",
134+
"Next, We use `torchvision datasets` for downloading the fashion mnist dataset and applying transforms which we defined above.\n",
135135
"\n",
136136
"* `trainset` contains the training data.\n",
137137
"* `validationset` contains the validation data\n",
@@ -342,7 +342,7 @@
342342
"source": [
343343
"### EarlyStopping - Tracking Validation Loss\n",
344344
"\n",
345-
"Now we will setup a `EarlyStopping` handler for this training process. EarlyStopping requires a score_function that allows the user to define whatever criteria to stop trainig. In this case, if the loss of the validation set does not decrease in 10 epochs, the training process will stop early. Since the `EarlyStopping` handler relies on the validation loss, it's attached to the `val_evaluator`. "
345+
"Now we will setup a `EarlyStopping` handler for this training process. EarlyStopping requires a score_function that allows the user to define whatever criteria to stop training. In this case, if the loss of the validation set does not decrease in 10 epochs, the training process will stop early. Since the `EarlyStopping` handler relies on the validation loss, it's attached to the `val_evaluator`. "
346346
]
347347
},
348348
{
@@ -633,7 +633,7 @@
633633
"id": "cWXOEpQ4abyv"
634634
},
635635
"source": [
636-
"### Refrences \n",
636+
"### References \n",
637637
"* [Pytorch Ignite Text CNN example notebook](https://github.com/pytorch/ignite/blob/master/examples/notebooks/TextCNN.ipynb)\n",
638638
"* [Pytorch Ignite MNIST example](https://github.com/pytorch/ignite/blob/master/examples/mnist/mnist.py)"
639639
]

0 commit comments

Comments
 (0)