From 88b383115c93d8492b36f8ba318090c6de1d9259 Mon Sep 17 00:00:00 2001 From: William Falcon Date: Sun, 28 Jul 2019 08:28:15 -0400 Subject: [PATCH] updated doc indexes --- docs/index.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/index.md b/docs/index.md index 4526863139..bcd7ca2159 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,7 +1,10 @@ ###### New project Quick Start -To start a new project you define two files, a LightningModule and a Trainer file. +To start a new project you define two files, a LightningModule and a Trainer file. + A separate trainer file allows to run many LightningModules. Each LightningModule has the core -logic to a particular research project. For example, one lightningModule could be an image classifier, the other +logic to a particular research project. + +For example, one lightningModule could be an image classifier, the other one could be a seq-2-seq model, both (optionally) ran by the same trainer file. 1. [MNIST LightningModule](https://williamfalcon.github.io/pytorch-lightning/LightningModule/RequiredTrainerInterface/#minimal-example)