fixed typos in style guide (#4181)

This commit is contained in:
khaitech 2020-10-16 23:21:47 +03:00 committed by GitHub
parent 5c1eff351b
commit 155f4e9aa5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -181,7 +181,7 @@ Dataloaders
Lightning uses dataloaders to handle all the data flow through the system. Whenever you structure 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. 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 DataModules
=========== ===========
@ -190,7 +190,7 @@ because all these questions need to be answered:
* What splits were used? * What splits were used?
* How many samples does this dataset have? * How many samples does this dataset have?
* What transformes were used? * What transforms were used?
* etc... * etc...
It's for this reason that we recommend you use datamodules. This is specially important when collaborating because It's for this reason that we recommend you use datamodules. This is specially important when collaborating because