Skip to content

Commit

Permalink
Fix typos in FashionMNIST notebook (#3321)
Browse files Browse the repository at this point in the history
  • Loading branch information
k22036 authored Jan 4, 2025
1 parent 7795700 commit ac89ed3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/notebooks/FashionMNIST.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
"source": [
"The code below first sets up transform using `torhvision transfroms` for converting images to pytorch tensors and normalizing the images.\n",
"\n",
"Next, We use `torchvision datasets` for dowloading the fashion mnist dataset and applying transforms which we defined above.\n",
"Next, We use `torchvision datasets` for downloading the fashion mnist dataset and applying transforms which we defined above.\n",
"\n",
"* `trainset` contains the training data.\n",
"* `validationset` contains the validation data\n",
Expand Down Expand Up @@ -342,7 +342,7 @@
"source": [
"### EarlyStopping - Tracking Validation Loss\n",
"\n",
"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`. "
"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`. "
]
},
{
Expand Down Expand Up @@ -633,7 +633,7 @@
"id": "cWXOEpQ4abyv"
},
"source": [
"### Refrences \n",
"### References \n",
"* [Pytorch Ignite Text CNN example notebook](https://github.com/pytorch/ignite/blob/master/examples/notebooks/TextCNN.ipynb)\n",
"* [Pytorch Ignite MNIST example](https://github.com/pytorch/ignite/blob/master/examples/mnist/mnist.py)"
]
Expand Down

0 comments on commit ac89ed3

Please sign in to comment.