From 62d0866ae1741fef7f727b4d07036e8a3922b5c5 Mon Sep 17 00:00:00 2001 From: "J. Randall Hunt" Date: Wed, 9 Sep 2020 00:35:34 -0700 Subject: [PATCH] Install torch not torch vision Small update to recipe that instructs users to install `torch` not `torchaudio` --- 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 bdb7ccfb375..f0a4ef69be3 100644 --- a/recipes_source/recipes/defining_a_neural_network.py +++ b/recipes_source/recipes/defining_a_neural_network.py @@ -26,7 +26,7 @@ :: - pip install torchaudio + pip install torch """