Skip to content

Commit

Permalink
training_end to training_step_end
Browse files Browse the repository at this point in the history
  • Loading branch information
williamFalcon committed Mar 5, 2020
1 parent 9db4d1f commit e13beac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pytorch_lightning/core/lightning.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def training_step_end(self, *args, **kwargs):
on only part of the batch. However, this is still optional
and only needed for things like softmax or NCE loss.
If you later switch to ddp or some other mode, this will still be called
.. note:: If you later switch to ddp or some other mode, this will still be called
so that you don't have to change your code
.. code-block:: python
Expand Down Expand Up @@ -364,7 +364,7 @@ def validation_step_end(self, *args, **kwargs):
on only part of the batch. However, this is still optional
and only needed for things like softmax or NCE loss.
If you later switch to ddp or some other mode, this will still be called
.. note:: If you later switch to ddp or some other mode, this will still be called
so that you don't have to change your code
.. code-block:: python
Expand Down Expand Up @@ -573,7 +573,7 @@ def test_step_end(self, *args, **kwargs):
on only part of the batch. However, this is still optional
and only needed for things like softmax or NCE loss.
If you later switch to ddp or some other mode, this will still be called
.. note:: If you later switch to ddp or some other mode, this will still be called
so that you don't have to change your code
.. code-block:: python
Expand Down

0 comments on commit e13beac

Please sign in to comment.