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`` –