From d34de3890e269de1adbe53aaa756ed953808629b Mon Sep 17 00:00:00 2001 From: William Falcon Date: Wed, 15 Jan 2020 21:43:04 -0500 Subject: [PATCH] added direct links to docs --- pytorch_lightning/core/lightning.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pytorch_lightning/core/lightning.py b/pytorch_lightning/core/lightning.py index d22b6ed1..03c6a162 100644 --- a/pytorch_lightning/core/lightning.py +++ b/pytorch_lightning/core/lightning.py @@ -1,8 +1,14 @@ """ -LightningModule -==================================== +The LightningModule is the "system recipe." It groups the following in one file: + - computational system definition + - computations done on forward + - training loop + - validation loop + - testing loop + - train, val, test dataloaders + - optimizers +""" -""" import os import warnings import collections