From 198d7715ee125d0fedf06c5aafb2dad59afcb0fe Mon Sep 17 00:00:00 2001 From: William Falcon Date: Sun, 26 Apr 2020 11:06:36 -0400 Subject: [PATCH] docs clean up --- docs/source/new-project.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/new-project.rst b/docs/source/new-project.rst index ab066a0b..e58083eb 100644 --- a/docs/source/new-project.rst +++ b/docs/source/new-project.rst @@ -63,7 +63,7 @@ Step 2: Fit with a Trainer trainer = Trainer(gpus=8, num_nodes=1) trainer.fit(model) - Under the hood, lightning does (in high-level pseudocode): +Under the hood, lightning does (in high-level pseudocode): .. code-block:: python @@ -139,7 +139,7 @@ Under the hood in pseudocode, lightning does the following: The beauty of Lightning is that it handles the details of when to validate, when to call .eval(), turning off gradients, detaching graphs, making sure you don't enable shuffle for val, etc... -ie: Lightning removes all the million details you need to remember during research +.. note:: Lightning removes all the million details you need to remember during research Test loop ---------