From 7b2a6367b1b08993bdd141b8592aeda1eac2f782 Mon Sep 17 00:00:00 2001 From: robz Date: Sun, 9 Aug 2020 15:52:17 -0500 Subject: [PATCH] Fix typo in defining_a_neural_network.py --- recipes_source/recipes/defining_a_neural_network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes_source/recipes/defining_a_neural_network.py b/recipes_source/recipes/defining_a_neural_network.py index 42e2d3370ca..bdb7ccfb375 100644 --- a/recipes_source/recipes/defining_a_neural_network.py +++ b/recipes_source/recipes/defining_a_neural_network.py @@ -59,7 +59,7 @@ # # Our network will recognize images. We will use a process built into # PyTorch called convolution. Convolution adds each element of an image to -# its local neighbors, weighted by a kernel, or a small martrix, that +# its local neighbors, weighted by a kernel, or a small matrix, that # helps us extract certain features (like edge detection, sharpness, # blurriness, etc.) from the input image. #