LightingDataModule doc fix (#3948)

Co-authored-by: Iryna Koroliuk <irynakoroliuk@Irynas-MacBook-Pro.local>
This commit is contained in:
irene50288 2020-10-07 10:54:21 -07:00 committed by GitHub
parent 6044cf9003
commit 0c4b22e28a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ This class can then be shared and used anywhere:
Why do I need a DataModule?
---------------------------
In normal PyTorch code, the data cleaning/preparation is usually scattered across many files. This makes
sharing and reusing the exact splits, and transforms across projects.
sharing and reusing the exact splits and transforms across projects impossible.
Datamodules are for you if you ever asked the questions: