diff --git a/README.md b/README.md index 037fc1969d..51fd079084 100644 --- a/README.md +++ b/README.md @@ -9,11 +9,10 @@ Scale your models, not the boilerplate.** ```diff - NEWS: Lightning 1.0 is currently in rc and is being released for GA on Oct 8th 2020! ``` - ---

- Masterclass • + WebsiteKey FeaturesHow To UseDocs • @@ -45,6 +44,25 @@ Scale your models, not the boilerplate.** --- +**Just launched GridAI- our native solution for training models at scale on the cloud! Sign up for [early acces here](https://www.grid.ai/)** + +To use grid, take your regular command: + +``` + python my_model.py --learning_rate 1e-6 --layers 2 --gpus 4 +``` + +And change it to use the grid train command: + +``` + grid train --grid_gpus 4 my_model.py --learning_rate 'uniform(1e-6, 1e-1, 20)' --layers '[2, 4, 8, 16]' +``` + +The above command will launch (20 * 4) experiments each running on 4 GPUs (320 GPUs!) - by making ZERO changes to +your code. + +--- + ## PyTorch Lightning is just organized PyTorch Lightning disentangles PyTorch code to decouple the science from the engineering. ![PT to PL](/docs/source/_images/general/pl_quick_start_full_compressed.gif)