@@ -623,14 +623,14 @@ def validation_step(self, *args, **kwargs):
623623 for val_batch in val_data:
624624 out = validation_step(val_batch)
625625 val_outs.append(out)
626- validation_epoch_end(val_outs)
626+ validation_epoch_end(val_outs)
627627
628628 Args:
629629 batch (:class:`~torch.Tensor` | (:class:`~torch.Tensor`, ...) | [:class:`~torch.Tensor`, ...]):
630630 The output of your :class:`~torch.utils.data.DataLoader`. A tensor, tuple or list.
631631 batch_idx (int): The index of this batch
632632 dataloader_idx (int): The index of the dataloader that produced this batch
633- (only if multiple val datasets used)
633+ (only if multiple val dataloaders used)
634634
635635 Return:
636636 Any of.
@@ -679,11 +679,11 @@ def validation_step(self, batch, batch_idx):
679679 # log the outputs!
680680 self.log_dict({'val_loss': loss, 'val_acc': val_acc})
681681
682- If you pass in multiple val datasets, validation_step will have an additional argument.
682+ If you pass in multiple val dataloaders, :meth:` validation_step` will have an additional argument.
683683
684684 .. code-block:: python
685685
686- # CASE 2: multiple validation datasets
686+ # CASE 2: multiple validation dataloaders
687687 def validation_step(self, batch, batch_idx, dataloader_idx):
688688 # dataloader_idx tells you which dataset this is.
689689
@@ -815,7 +815,7 @@ def test_step(self, *args, **kwargs):
815815 The output of your :class:`~torch.utils.data.DataLoader`. A tensor, tuple or list.
816816 batch_idx (int): The index of this batch.
817817 dataloader_idx (int): The index of the dataloader that produced this batch
818- (only if multiple test datasets used).
818+ (only if multiple test dataloaders used).
819819
820820 Return:
821821 Any of.
@@ -855,17 +855,17 @@ def test_step(self, batch, batch_idx):
855855 # log the outputs!
856856 self.log_dict({'test_loss': loss, 'test_acc': test_acc})
857857
858- If you pass in multiple validation datasets , :meth:`test_step` will have an additional
858+ If you pass in multiple test dataloaders , :meth:`test_step` will have an additional
859859 argument.
860860
861861 .. code-block:: python
862862
863- # CASE 2: multiple test datasets
863+ # CASE 2: multiple test dataloaders
864864 def test_step(self, batch, batch_idx, dataloader_idx):
865865 # dataloader_idx tells you which dataset this is.
866866
867867 Note:
868- If you don't need to validate you don't need to implement this method.
868+ If you don't need to test you don't need to implement this method.
869869
870870 Note:
871871 When the :meth:`test_step` is called, the model has been put in eval mode and
0 commit comments