diff --git a/Trainer/Training Loop/index.html b/Trainer/Training Loop/index.html index 2b250a72..70d5523a 100644 --- a/Trainer/Training Loop/index.html +++ b/Trainer/Training Loop/index.html @@ -616,7 +616,7 @@
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.
+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.
Below are all the things lightning automates for you in the training loop.
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. +
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. Below are all the things lightning automates for you in the validation loop.
Note
Lightning will run 5 steps of validation in the beginning of training as a sanity check so you don't have to wait until a full epoch to catch possible validation issues.