Skip to content

Commit

Permalink
Fix *_batch_end typos (Lightning-AI#17188)
Browse files Browse the repository at this point in the history
Co-authored-by: Carlos Mocholí <[email protected]>
  • Loading branch information
idc9 and carmocca authored Mar 25, 2023
1 parent 7ec9a97 commit 3458258
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/source-pytorch/upgrade/sections/1_9_advanced.rst
Original file line number Diff line number Diff line change
Expand Up @@ -231,15 +231,15 @@
- `PR16750`_

* - had any logic except reducing the DP outputs in ``LightningModule.training_step_end`` hook
- port it to ``LightningModule.training_batch_end`` hook
- port it to ``LightningModule.on_train_batch_end`` hook
- `PR16791`_

* - had any logic except reducing the DP outputs in ``LightningModule.validation_step_end`` hook
- port it to ``LightningModule.validation_batch_end`` hook
- port it to ``LightningModule.on_validation_batch_end`` hook
- `PR16791`_

* - had any logic except reducing the DP outputs in ``LightningModule.test_step_end`` hook
- port it to ``LightningModule.test_batch_end`` hook
- port it to ``LightningModule.on_test_batch_end`` hook
- `PR16791`_

* - used ``pl.strategies.DDPSpawnStrategy``
Expand Down

0 comments on commit 3458258

Please sign in to comment.