Skip to content

Commit 7e51fa0

Browse files
jspisaksoumith
authored andcommitted
Update cifar10_tutorial.py (#568)
Some spelling errors fixed.. "That looks waaay better than chance" "Because your network is realllly small"
1 parent 81066e1 commit 7e51fa0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

beginner_source/blitz/cifar10_tutorial.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def forward(self, x):
235235
100 * correct / total))
236236

237237
########################################################################
238-
# That looks waaay better than chance, which is 10% accuracy (randomly picking
238+
# That looks way better than chance, which is 10% accuracy (randomly picking
239239
# a class out of 10 classes).
240240
# Seems like the network learnt something.
241241
#
@@ -298,7 +298,7 @@ def forward(self, x):
298298
# inputs, labels = data[0].to(device), data[1].to(device)
299299
#
300300
# Why dont I notice MASSIVE speedup compared to CPU? Because your network
301-
# is realllly small.
301+
# is really small.
302302
#
303303
# **Exercise:** Try increasing the width of your network (argument 2 of
304304
# the first ``nn.Conv2d``, and argument 1 of the second ``nn.Conv2d`` –

0 commit comments

Comments
 (0)