From c73d1a94cee4b81a99ac00a7f378f5222a7035d2 Mon Sep 17 00:00:00 2001 From: William Falcon Date: Thu, 27 Jun 2019 12:13:55 -0400 Subject: [PATCH] renamed options --- docs/Trainer/Training Loop.md | 4 +++- docs/Trainer/Vaildation loop.md | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) 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