Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitgr7 committed Nov 9, 2021
1 parent bba8055 commit 308f9c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
- Fixed issue with pickling `CSVLogger` after a call to `CSVLogger.save` ([#10388](https://github.com/PyTorchLightning/pytorch-lightning/pull/10388))


- Fixed `extract_batch_size` call only when its required ([#10408](https://github.com/PyTorchLightning/pytorch-lightning/pull/10408))
- Fixed the call to `extract_batch_size` only when its required ([#10408](https://github.com/PyTorchLightning/pytorch-lightning/pull/10408))



Expand Down
2 changes: 1 addition & 1 deletion pytorch_lightning/core/lightning.py
Original file line number Diff line number Diff line change
Expand Up @@ -1651,7 +1651,7 @@ def optimizer_step(
pg["lr"] = lr_scale * self.learning_rate
# update params
optimizer.step(clo, batch_sizesure=optimizer_closure)
optimizer.step(closure=optimizer_closure)
"""
optimizer.step(closure=optimizer_closure)
Expand Down

0 comments on commit 308f9c0

Please sign in to comment.