From 79a79fb27d9a84bce6cb09dcd01e6e4c5d9cfa68 Mon Sep 17 00:00:00 2001 From: William Falcon Date: Thu, 25 Jul 2019 12:33:53 -0400 Subject: [PATCH] updated examples --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index e4903b412d..2aad7c0377 100644 --- a/README.md +++ b/README.md @@ -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