From 24bfa53894e7b6b7fdfa38f1a71352d6f469ff02 Mon Sep 17 00:00:00 2001 From: William Falcon Date: Thu, 12 Dec 2019 13:36:17 -0500 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e37f1edde0..30806a6322 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,9 @@ pip install pytorch-lightning [Copy and run this COLAB!](https://colab.research.google.com/drive/1F_RNcHzTfFuQf-LeKvSlud6x7jXYkG31#scrollTo=HOk9c4_35FKg) ## What is it? -Lightning is a very lightweight wrapper on PyTorch that decouples the science from the engineering. This means you don't have to learn a new library. To use Lightning, simply refactor your research code into the [LightningModule](https://github.com/williamFalcon/pytorch-lightning#how-do-i-do-use-it) format (the science) and Lightning will automate the rest (the engineering). Lightning guarantees tested, correct, modern best practices for the automated parts. +Lightning is a very lightweight wrapper on PyTorch that decouples the science code from the engineering code. + +This means you don't have to learn a new library. To use Lightning, simply refactor your research code into the [LightningModule](https://github.com/williamFalcon/pytorch-lightning#how-do-i-do-use-it) format (the science) and Lightning will automate the rest (the engineering). Lightning guarantees tested, correct, modern best practices for the automated parts. ## What does lightning control for me?