From 0c841cf59a6fd93ab957fb1974a8a790c0807bde Mon Sep 17 00:00:00 2001 From: William Falcon Date: Thu, 27 Jun 2019 14:45:19 -0400 Subject: [PATCH] changed read me --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ec41b884ff..0b3461dae4 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ To use lightning do 2 things: ## What does lightning control for me? Everything! Except the following three things: -*Automatic training loop* +**Automatic training loop** ```python # define what happens for training here @@ -49,7 +49,7 @@ def training_step(self, data_batch, batch_nb): return {'loss': loss} ``` -*Automatic validation loop* +**Automatic validation loop** ```python # define what happens for validation here @@ -62,7 +62,7 @@ def validation_step(self, data_batch, batch_nb): return {'loss': loss} ``` -*Collate the output of the validation_step* +**Collate the output of the validation_step** ```python def validation_end(self, outputs):