mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-09-10 12:21:57 +08:00
added docs page
This commit is contained in:
@@ -38,13 +38,20 @@ To use lightning do 2 things:
|
||||
- Automatic training loop
|
||||
```python
|
||||
# define what happens for training here
|
||||
def training_step(self, data_batch, batch_nb):
|
||||
def training_step(self, data_batch, batch_nb):
|
||||
x, y = data_batch
|
||||
out = self.forward(x)
|
||||
loss = my_loss(out, y)
|
||||
return {'loss': loss}
|
||||
```
|
||||
- Automatic validation loop
|
||||
|
||||
```python
|
||||
# define what happens for validation here
|
||||
def validation_step(self, data_batch, batch_nb):
|
||||
def validation_step(self, data_batch, batch_nb): x, y = data_batch
|
||||
out = self.forward(x)
|
||||
loss = my_loss(out, y)
|
||||
return {'loss': loss}
|
||||
```
|
||||
|
||||
- Automatic early stopping
|
||||
|
||||
Reference in New Issue
Block a user