From acfffe1822d916158243733960de1430bca57d12 Mon Sep 17 00:00:00 2001 From: William Falcon Date: Thu, 16 Jan 2020 07:45:36 -0500 Subject: [PATCH] finished rebase --- pytorch_lightning/trainer/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pytorch_lightning/trainer/__init__.py b/pytorch_lightning/trainer/__init__.py index c18f22b8..e250350d 100644 --- a/pytorch_lightning/trainer/__init__.py +++ b/pytorch_lightning/trainer/__init__.py @@ -11,6 +11,7 @@ The trainer automates all parts of training except: - which optimizers to use - how to do the computations + The Trainer delegates those calls to your LightningModule which defines how to do those parts. This is the basic use of the trainer: