From a6ddf8a671522a1d341ad01aebed670abeb6de0a Mon Sep 17 00:00:00 2001 From: William Falcon Date: Sun, 28 Jul 2019 08:16:55 -0400 Subject: [PATCH] updated doc indexes --- docs/LightningModule/RequiredTrainerInterface.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/LightningModule/RequiredTrainerInterface.md b/docs/LightningModule/RequiredTrainerInterface.md index ff4adf57..5b0c42b6 100644 --- a/docs/LightningModule/RequiredTrainerInterface.md +++ b/docs/LightningModule/RequiredTrainerInterface.md @@ -3,7 +3,7 @@ A lightning module is a strict superclass of nn.Module, it provides a standard interface for the trainer to interact with the model. -The easiest thing to do is copy [this template](../../pytorch_lightning/examples/new_project_templates/lightning_module_template.py) and modify accordingly. +The easiest thing to do is copy [this minimal example](https://williamfalcon.github.io/pytorch-lightning/LightningModule/RequiredTrainerInterface/#minimal-example) and modify accordingly. Otherwise, to Define a Lightning Module, implement the following methods: