From 69ef044f6e0d46d11a8895b9b6b0fb72d3752916 Mon Sep 17 00:00:00 2001 From: Gilles Peiffer Date: Sun, 5 Jul 2020 01:13:13 +0200 Subject: [PATCH] Fix ReST and typo in CIFAR tutorial --- beginner_source/blitz/cifar10_tutorial.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/beginner_source/blitz/cifar10_tutorial.py b/beginner_source/blitz/cifar10_tutorial.py index 730bf6ac986..73247bf7f19 100644 --- a/beginner_source/blitz/cifar10_tutorial.py +++ b/beginner_source/blitz/cifar10_tutorial.py @@ -62,6 +62,7 @@ ######################################################################## # The output of torchvision datasets are PILImage images of range [0, 1]. # We transform them to Tensors of normalized range [-1, 1]. +# # .. note:: # If running on Windows and you get a BrokenPipeError, try setting # the num_worker of torch.utils.data.DataLoader() to 0. @@ -316,7 +317,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 +# Why don't I notice MASSIVE speedup compared to CPU? Because your network # is really small. # # **Exercise:** Try increasing the width of your network (argument 2 of