Fix AttributeError: 'NoneType' object has no attribute 'finalize' on TPU (#6221)
* Fix bug Fix AttributeError: 'NoneType' object has no attribute 'finalize' * Update CHANGELOG.md * deleted a period * Update CHANGELOG.md Co-authored-by: Akihiro Nitta <nitta@akihironitta.com> * Update CHANGELOG.md * Update pytorch_lightning/plugins/training_type/tpu_spawn.py Co-authored-by: Rohit Gupta <rohitgr1998@gmail.com> Co-authored-by: Akihiro Nitta <nitta@akihironitta.com> Co-authored-by: Carlos Mocholí <carlossmocholi@gmail.com> Co-authored-by: Rohit Gupta <rohitgr1998@gmail.com>
This commit is contained in:
parent
0ec7a23a1e
commit
a6c98c4e49
|
@ -98,6 +98,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
|
|||
- Expose DeepSpeed loss parameters to allow users to fix loss instability ([#6115](https://github.com/PyTorchLightning/pytorch-lightning/pull/6115))
|
||||
|
||||
|
||||
- Fixed `AttributeError` when `logger=None` on TPU ([#6221](https://github.com/PyTorchLightning/pytorch-lightning/pull/6221))
|
||||
|
||||
|
||||
- Fixed `ModelPruning(make_pruning_permanent=True)` pruning buffers getting removed when saved during training ([#6073](https://github.com/PyTorchLightning/pytorch-lightning/pull/6073))
|
||||
|
||||
|
||||
|
|
|
@ -262,7 +262,7 @@ class TPUSpawnPlugin(DDPSpawnPlugin):
|
|||
self._model = model
|
||||
|
||||
def _close_logger(self, trainer) -> None:
|
||||
if hasattr(trainer, "logger"):
|
||||
if trainer.logger is not None:
|
||||
trainer.logger.finalize("success")
|
||||
|
||||
@property
|
||||
|
|
Loading…
Reference in New Issue