diff --git a/docs/Trainer/Training Loop.md b/docs/Trainer/Training Loop.md index 946b8ac931..d78b65bfa7 100644 --- a/docs/Trainer/Training Loop.md +++ b/docs/Trainer/Training Loop.md @@ -1,4 +1,6 @@ -The asdf +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). + +Below are all the things lightning automates for you in the training loop. --- #### Accumulated gradients diff --git a/docs/Trainer/Vaildation loop.md b/docs/Trainer/Vaildation loop.md index e69de29bb2..3b9cafcebf 100644 --- a/docs/Trainer/Vaildation loop.md +++ b/docs/Trainer/Vaildation loop.md @@ -0,0 +1,3 @@ +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). + +Below are all the things lightning automates for you in the validation loop. \ No newline at end of file