File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change 13
13
===========================
14
14
15
15
Now that we have a model and data it's time to train, validate and test our model by optimizing its parameters on
16
- our data. Training a model is an iterative process; in each iteration (called an *epoch*) the model makes a guess about the output, calculates
16
+ our data. Training a model is an iterative process; in each iteration the model makes a guess about the output, calculates
17
17
the error in its guess (*loss*), collects the derivatives of the error with respect to its parameters (as we saw in
18
18
the `previous section <autograd_tutorial.html>`_), and **optimizes** these parameters using gradient descent. For a more
19
19
detailed walkthrough of this process, check out this video on `backpropagation from 3Blue1Brown <https://www.youtube.com/watch?v=tIeHLnjs5U8>`__.
You can’t perform that action at this time.
0 commit comments