Fix typo in Trainer.test() (#5226)

Co-authored-by: Jirka Borovec <Borda@users.noreply.github.com>
(cherry picked from commit 1d533074b3)
This commit is contained in:
James Malcolm 2020-12-24 20:41:24 +13:00 committed by Jirka Borovec
parent edf1defb4e
commit 27559e0a0b
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ Once you're done training, feel free to run the test set!
.. code-block:: python
trainer.test(test_dataloader=test_dataloader)
trainer.test(test_dataloaders=test_dataloader)
------------