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**