Skip to content

Commit

Permalink
Merge pull request udacity#345 from leonbeckert/patch-1
Browse files Browse the repository at this point in the history
docs: fix typo
  • Loading branch information
abhiojha8 authored Aug 9, 2021
2 parents 459a4b8 + 84300ab commit 2d7db1c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@
"source": [
"### Training for real\n",
"\n",
"Now we'll put this algorithm into a loop so we can go through all the images. Some nomenclature, one pass through the entire dataset is called an *epoch*. So here we're going to loop through `trainloader` to get our training batches. For each batch, we'll doing a training pass where we calculate the loss, do a backwards pass, and update the weights.\n",
"Now we'll put this algorithm into a loop so we can go through all the images. Some nomenclature, one pass through the entire dataset is called an *epoch*. So here we're going to loop through `trainloader` to get our training batches. For each batch, we'll be doing a training pass where we calculate the loss, do a backwards pass, and update the weights.\n",
"\n",
">**Exercise:** Implement the training pass for our network. If you implemented it correctly, you should see the training loss drop with each epoch."
]
Expand Down

0 comments on commit 2d7db1c

Please sign in to comment.