diff --git a/CHANGELOG.md b/CHANGELOG.md index 0978f344..1d990dce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,15 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). -## [unreleased] - YYYY-MM-DD - -### Added +## [0.7.5] - 2020-04-27 ### Changed -- Allow logging of metrics togther with hparams ([#1630](https://github.com/PyTorchLightning/pytorch-lightning/pull/1630)) - -### Deprecated +- Allow logging of metrics together with `hparams` ([#1630](https://github.com/PyTorchLightning/pytorch-lightning/pull/1630)) +- Allow metrics logged together with hparams ([#1630](https://github.com/PyTorchLightning/pytorch-lightning/pull/1630)) ### Removed @@ -20,6 +17,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ### Fixed +- Fixed ModelCheckpoint not being fixable ([#1632](https://github.com/PyTorchLightning/pytorch-lightning/pull/1632)) +- Fixed CPU DDP breaking change and DDP change ([#1635](https://github.com/PyTorchLightning/pytorch-lightning/pull/1635)) +- Tested pickling ([#1636](https://github.com/PyTorchLightning/pytorch-lightning/pull/1636)) + ## [0.7.4] - 2020-04-26 diff --git a/pytorch_lightning/__init__.py b/pytorch_lightning/__init__.py index 2a656ce2..705bdfc6 100644 --- a/pytorch_lightning/__init__.py +++ b/pytorch_lightning/__init__.py @@ -1,6 +1,6 @@ """Root package info.""" -__version__ = '0.7.5rc1' +__version__ = '0.7.5' __author__ = 'William Falcon et al.' __author_email__ = 'waf2107@columbia.edu' __license__ = 'Apache-2.0' diff --git a/tests/trainer/test_trainer.py b/tests/trainer/test_trainer.py index f89f6b3f..18cc2586 100644 --- a/tests/trainer/test_trainer.py +++ b/tests/trainer/test_trainer.py @@ -127,13 +127,12 @@ def test_no_val_end_module(tmpdir): new_weights_path = os.path.join(tmpdir, 'save_test.ckpt') trainer.save_checkpoint(new_weights_path) - # assert ckpt has hparams - ckpt = torch.load(new_weights_path) - assert 'hparams' in ckpt.keys(), 'hparams missing from checkpoints' - - # won't load without hparams in the ckpt + # load new model + tags_path = tutils.get_data_path(logger, path_dir=tmpdir) + tags_path = os.path.join(tags_path, 'meta_tags.csv') model_2 = LightningTestModel.load_from_checkpoint( checkpoint_path=new_weights_path, + tags_csv=tags_path ) model_2.eval()