From 155f4e9aa5d6175f8d3db23d483154b065412cd0 Mon Sep 17 00:00:00 2001 From: khaitech Date: Fri, 16 Oct 2020 23:21:47 +0300 Subject: [PATCH] fixed typos in style guide (#4181) --- docs/source/style_guide.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/style_guide.rst b/docs/source/style_guide.rst index e9beed2de0..c6e06395f8 100644 --- a/docs/source/style_guide.rst +++ b/docs/source/style_guide.rst @@ -181,7 +181,7 @@ Dataloaders Lightning uses dataloaders to handle all the data flow through the system. Whenever you structure dataloaders, make sure to tune the number of workers for maximum efficiency. -.. warning:: Make sure not to use ddp_spawn with num_workers > 0 or your will bottleneck your code. +.. warning:: Make sure not to use ddp_spawn with num_workers > 0 or you will bottleneck your code. DataModules =========== @@ -190,7 +190,7 @@ because all these questions need to be answered: * What splits were used? * How many samples does this dataset have? -* What transformes were used? +* What transforms were used? * etc... It's for this reason that we recommend you use datamodules. This is specially important when collaborating because