From cdb4de36060a4bf9bbf7e87704317536bd3cdd15 Mon Sep 17 00:00:00 2001 From: William Falcon Date: Sun, 28 Jul 2019 08:13:40 -0400 Subject: [PATCH] updated doc indexes --- docs/Trainer/Training Loop.md | 2 +- docs/Trainer/Validation loop.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Trainer/Training Loop.md b/docs/Trainer/Training Loop.md index 2be8da9edd..e1ff90a484 100644 --- a/docs/Trainer/Training Loop.md +++ b/docs/Trainer/Training Loop.md @@ -1,4 +1,4 @@ -The lightning training loop handles everything except the actual computations of your model. To decide what will happen in your training loop, define the [training_step function](../../Pytorch-lightning/LightningModule/#training_step). +The lightning training loop handles everything except the actual computations of your model. To decide what will happen in your training loop, define the [training_step function](https://williamfalcon.github.io/pytorch-lightning/LightningModule/RequiredTrainerInterface/#training_step). Below are all the things lightning automates for you in the training loop. diff --git a/docs/Trainer/Validation loop.md b/docs/Trainer/Validation loop.md index 693df88904..8d6c5bac46 100644 --- a/docs/Trainer/Validation loop.md +++ b/docs/Trainer/Validation loop.md @@ -1,4 +1,4 @@ -The lightning validation loop handles everything except the actual computations of your model. To decide what will happen in your validation loop, define the [validation_step function](../../Pytorch-lightning/LightningModule/#validation_step). +The lightning validation loop handles everything except the actual computations of your model. To decide what will happen in your validation loop, define the [validation_step function](https://williamfalcon.github.io/pytorch-lightning/LightningModule/RequiredTrainerInterface/#validation_step). Below are all the things lightning automates for you in the validation loop. **Note**