renamed options

This commit is contained in:
William Falcon 2019-06-27 12:13:55 -04:00
parent ed31417b26
commit c73d1a94ce
2 changed files with 6 additions and 1 deletions

View File

@ -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 #### Accumulated gradients

View File

@ -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.