From 0c4b22e28a50dc87d5c615ef3979f44f212fb70a Mon Sep 17 00:00:00 2001 From: irene50288 <2590780+irene50288@users.noreply.github.com> Date: Wed, 7 Oct 2020 10:54:21 -0700 Subject: [PATCH] LightingDataModule doc fix (#3948) Co-authored-by: Iryna Koroliuk --- docs/source/datamodules.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/datamodules.rst b/docs/source/datamodules.rst index e1fbeabd96..5be75632ea 100644 --- a/docs/source/datamodules.rst +++ b/docs/source/datamodules.rst @@ -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: