From 17c4709d6dfa769f8481548913eeb479bd613a06 Mon Sep 17 00:00:00 2001 From: Aisuko Date: Fri, 2 Feb 2024 10:13:42 +0000 Subject: [PATCH] Fixed wrong link of MNIST Signed-off-by: GitHub --- 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 07d91edcd8c..da58a1c5752 100644 --- a/recipes_source/recipes/defining_a_neural_network.py +++ b/recipes_source/recipes/defining_a_neural_network.py @@ -17,7 +17,7 @@ In this recipe, we will use ``torch.nn`` to define a neural network intended for the `MNIST -dataset `__. +dataset `__. Setup -----