From 1205dc8a201af0fa9efb7ba563285e1e8cbb376e Mon Sep 17 00:00:00 2001 From: William Falcon Date: Sun, 28 Jul 2019 08:19:51 -0400 Subject: [PATCH] updated doc indexes --- docs/LightningModule/RequiredTrainerInterface.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/LightningModule/RequiredTrainerInterface.md b/docs/LightningModule/RequiredTrainerInterface.md index 5b0c42b6df..059c54260f 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 minimal example](https://williamfalcon.github.io/pytorch-lightning/LightningModule/RequiredTrainerInterface/#minimal-example) and modify accordingly. +The easiest thing to do is copy the [minimal example](https://williamfalcon.github.io/pytorch-lightning/LightningModule/RequiredTrainerInterface/#minimal-example) below and modify accordingly. Otherwise, to Define a Lightning Module, implement the following methods: @@ -27,7 +27,7 @@ Otherwise, to Define a Lightning Module, implement the following methods: - [add_model_specific_args](RequiredTrainerInterface.md#add_model_specific_args) --- -**Minimal example** +### Minimal example ```python import os import torch