From 3dee7fffc87437d68c9195df330be07cb0740820 Mon Sep 17 00:00:00 2001 From: Simon Dunne Date: Wed, 7 Apr 2021 15:46:25 +0200 Subject: [PATCH] Fix formatting typo preventing rendering of note --- beginner_source/blitz/cifar10_tutorial.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/beginner_source/blitz/cifar10_tutorial.py b/beginner_source/blitz/cifar10_tutorial.py index 9f387c7145c..a10e59b71ee 100644 --- a/beginner_source/blitz/cifar10_tutorial.py +++ b/beginner_source/blitz/cifar10_tutorial.py @@ -62,6 +62,8 @@ ######################################################################## # 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.