renamed options
This commit is contained in:
parent
ed31417b26
commit
c73d1a94ce
|
@ -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
|
||||||
|
|
|
@ -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.
|
Loading…
Reference in New Issue