From 87466eac1f49741f0c794fb7dc5c7acd8d7288cc Mon Sep 17 00:00:00 2001 From: Joseph Spisak Date: Sun, 21 Jul 2019 22:00:44 -0700 Subject: [PATCH] Update cifar10_tutorial.py Some spelling errors fixed.. "That looks waaay better than chance" "Because your network is realllly small" --- beginner_source/blitz/cifar10_tutorial.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beginner_source/blitz/cifar10_tutorial.py b/beginner_source/blitz/cifar10_tutorial.py index d84e2fab7e0..981aec8cfee 100644 --- a/beginner_source/blitz/cifar10_tutorial.py +++ b/beginner_source/blitz/cifar10_tutorial.py @@ -235,7 +235,7 @@ def forward(self, x): 100 * correct / total)) ######################################################################## -# That looks waaay better than chance, which is 10% accuracy (randomly picking +# That looks way better than chance, which is 10% accuracy (randomly picking # a class out of 10 classes). # Seems like the network learnt something. # @@ -298,7 +298,7 @@ def forward(self, x): # inputs, labels = data[0].to(device), data[1].to(device) # # Why dont I notice MASSIVE speedup compared to CPU? Because your network -# is realllly small. +# is really small. # # **Exercise:** Try increasing the width of your network (argument 2 of # the first ``nn.Conv2d``, and argument 1 of the second ``nn.Conv2d`` –