Fix docs typo (#2803)

* Fix docs typo

* Fix docs typo
This commit is contained in:
siahuat0727 2020-08-03 20:55:17 +08:00 committed by GitHub
parent 471f2b80af
commit 58ca33f194
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -860,9 +860,9 @@ class LightningModule(ABC, DeviceDtypeModuleMixin, GradInformation, ModelIO, Mod
Override to init DDP in your own way or with your own wrapper.
The only requirements are that:
1. On a validation batch the call goes to ``model.validation_step``.
2. On a training batch the call goes to ``model.training_step``.
3. On a testing batch, the call goes to ``model.test_step``.+
1. On a validation batch, the call goes to ``model.validation_step``.
2. On a training batch, the call goes to ``model.training_step``.
3. On a testing batch, the call goes to ``model.test_step``.
Args:
model: the :class:`LightningModule` currently being optimized.