From 4c57155d1497a2d194ee434a468c9f7df33d6932 Mon Sep 17 00:00:00 2001 From: chaddy Date: Tue, 22 Feb 2022 07:08:26 +0900 Subject: [PATCH] Fix typos on new-project page (#11942) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Chaddie Co-authored-by: Akihiro Nitta Co-authored-by: Adrian Wälchli --- docs/source/starter/new-project.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/starter/new-project.rst b/docs/source/starter/new-project.rst index 8125ce1512..73330f8c9a 100644 --- a/docs/source/starter/new-project.rst +++ b/docs/source/starter/new-project.rst @@ -195,7 +195,7 @@ of the 20+ hooks found in :ref:`lightning_hooks` **FORWARD vs TRAINING_STEP** -In Lightning, we suggest separatating training from inference. The ``training_step`` defines +In Lightning we suggest separating training from inference. The ``training_step`` defines the full training loop. We encourage users to use the ``forward`` to define inference actions. For example, in this case we can define the autoencoder to act as an embedding extractor: