From b794e9bd459663a776fef00a55347faecdb17d23 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Mon, 12 Oct 2020 10:00:12 +0100 Subject: [PATCH] chapter 4 misspelling - 'backard pass' -> 'backward pass' (#289) --- 04_mnist_basics.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04_mnist_basics.ipynb b/04_mnist_basics.ipynb index f6170f7..0e85ab7 100644 --- a/04_mnist_basics.ipynb +++ b/04_mnist_basics.ipynb @@ -5761,7 +5761,7 @@ "|Forward pass | Applying the model to some input and computing the predictions.\n", "|Loss | A value that represents how well (or badly) our model is doing.\n", "|Gradient | The derivative of the loss with respect to some parameter of the model.\n", - "|Backard pass | Computing the gradients of the loss with respect to all model parameters.\n", + "|Backward pass | Computing the gradients of the loss with respect to all model parameters.\n", "|Gradient descent | Taking a step in the directions opposite to the gradients to make the model parameters a little bit better.\n", "|Learning rate | The size of the step we take when applying SGD to update the parameters of the model.\n", "|=====\n",