Fix typos on new-project page (#11942)

Co-authored-by: Chaddie <chaddie.paik@webtoonscorp.com>
Co-authored-by: Akihiro Nitta <nitta@akihironitta.com>
Co-authored-by: Adrian Wälchli <aedu.waelchli@gmail.com>
This commit is contained in:
chaddy 2022-02-22 07:08:26 +09:00 committed by GitHub
parent 9c067c2a3e
commit 4c57155d14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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: