updated examples

This commit is contained in:
William Falcon 2019-07-25 12:33:53 -04:00
parent b1cd5d9d31
commit 79a79fb27d
1 changed files with 2 additions and 0 deletions

View File

@ -37,6 +37,8 @@ When starting a new project the last thing you want to do is recode a training l
With lightning, you guarantee those parts of your code work so you can focus on what the meat of the research: Data and training, validation loop logic. Don't worry about multiple gpus or speeding up your code, lightning will do that for you!
## How do I do use it?
To use lightning do 2 things:
1. [Define a LightningModel](https://williamfalcon.github.io/pytorch-lightning/LightningModule/RequiredTrainerInterface/)
```python