Skip to content

Commit 19df091

Browse files
Bordaawaelchli
andauthored
chlogs for 1.0 [skip ci] (#3978)
* chlogs * logs * space * date * logs * logs * Apply suggestions from code review Co-authored-by: Adrian Wälchli <[email protected]> * logs * logs Co-authored-by: Adrian Wälchli <[email protected]>
1 parent 4ea31c2 commit 19df091

File tree

1 file changed

+58
-2
lines changed

1 file changed

+58
-2
lines changed

CHANGELOG.md

Lines changed: 58 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,88 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
66

77

8-
## [unreleased] - YYYY-MM-DD
8+
## [1.0.0] - 2020-10-DD
99

1010
### Added
1111

12+
- Added Explained Variance Metric + metric fix ([#4013](https://github.com/PyTorchLightning/pytorch-lightning/pull/4013))
13+
14+
- Added Metric <-> Lightning Module integration tests ([#4008](https://github.com/PyTorchLightning/pytorch-lightning/pull/4008))
15+
16+
- Added parsing OS env vars in `Trainer` ([#4022](https://github.com/PyTorchLightning/pytorch-lightning/pull/4022))
17+
18+
- Added classification metrics ([#4043](https://github.com/PyTorchLightning/pytorch-lightning/pull/4043))
19+
20+
- Updated explained variance metric ([#4024](https://github.com/PyTorchLightning/pytorch-lightning/pull/4024))
21+
22+
- Enabled plugins ([#4041](https://github.com/PyTorchLightning/pytorch-lightning/pull/4041))
23+
24+
- Enabled custom clusters ([#4048](https://github.com/PyTorchLightning/pytorch-lightning/pull/4048))
25+
26+
- Enabled passing in custom accelerators ([#4050](https://github.com/PyTorchLightning/pytorch-lightning/pull/4050))
27+
28+
- Added `LightningModule.toggle_optimizer` ([#4058](https://github.com/PyTorchLightning/pytorch-lightning/pull/4058))
29+
30+
- Added `LightningModule.manual_backward` ([#4063](https://github.com/PyTorchLightning/pytorch-lightning/pull/4063))
1231

1332
### Changed
1433

34+
- Integrated metrics API with self.log ([#3961](https://github.com/PyTorchLightning/pytorch-lightning/pull/3961))
35+
36+
- Decoupled Appex ([#4052](https://github.com/PyTorchLightning/pytorch-lightning/pull/4052),
37+
[#4054](https://github.com/PyTorchLightning/pytorch-lightning/pull/4054),
38+
[#4055](https://github.com/PyTorchLightning/pytorch-lightning/pull/4055),
39+
[#4056](https://github.com/PyTorchLightning/pytorch-lightning/pull/4056),
40+
[#4058](https://github.com/PyTorchLightning/pytorch-lightning/pull/4058),
41+
[#4060](https://github.com/PyTorchLightning/pytorch-lightning/pull/4060),
42+
[#4061](https://github.com/PyTorchLightning/pytorch-lightning/pull/4061),
43+
[#4062](https://github.com/PyTorchLightning/pytorch-lightning/pull/4062),
44+
[#4063](https://github.com/PyTorchLightning/pytorch-lightning/pull/4063),
45+
[#4064](https://github.com/PyTorchLightning/pytorch-lightning/pull/4064),
46+
[#4065](https://github.com/PyTorchLightning/pytorch-lightning/pull/4065))
47+
48+
- Renamed all backends to `Accelerator` ([#4066](https://github.com/PyTorchLightning/pytorch-lightning/pull/4066))
49+
50+
- Enabled manual returns ([#4089](https://github.com/PyTorchLightning/pytorch-lightning/pull/4089))
1551

1652
### Deprecated
1753

1854

1955
### Removed
2056

57+
- Removed `output` argument from `*_batch_end` hooks ([#3965](https://github.com/PyTorchLightning/pytorch-lightning/pull/3965),
58+
[#3966](https://github.com/PyTorchLightning/pytorch-lightning/pull/3966))
59+
60+
- Removed `output` argument from `*_epoch_end` hooks ([#3967](https://github.com/PyTorchLightning/pytorch-lightning/pull/3967))
61+
62+
- Removed support for EvalResult and TrainResult ([#3968](https://github.com/PyTorchLightning/pytorch-lightning/pull/3968))
63+
64+
- Removed deprecated trainer flags: `overfit_pct`, `log_save_interval`, `row_log_interval` ([#3969](https://github.com/PyTorchLightning/pytorch-lightning/pull/3969))
65+
66+
- Removed deprecated early_stop_callback ([#3982](https://github.com/PyTorchLightning/pytorch-lightning/pull/3982))
67+
68+
- Removed deprecated model hooks ([#3980](https://github.com/PyTorchLightning/pytorch-lightning/pull/3980))
69+
70+
- Removed deprecated callbacks ([#3979](https://github.com/PyTorchLightning/pytorch-lightning/pull/3979))
71+
72+
- Removed `trainer` argument in `LightningModule.backward` [#4056](https://github.com/PyTorchLightning/pytorch-lightning/pull/4056))
2173

2274
### Fixed
75+
2376
- Fixed `current_epoch` property update to reflect true epoch number inside `LightningDataModule`, when `reload_dataloaders_every_epoch=True`. ([#3974](https://github.com/PyTorchLightning/pytorch-lightning/issues/3974))
77+
2478
- Fixed to print scaler value in progress bar ([#4053](https://github.com/PyTorchLightning/pytorch-lightning/pull/4053))
2579

80+
- Fixed mismatch between docstring and code regarding when `on_load_checkpoint` hook is called ([#3996](https://github.com/PyTorchLightning/pytorch-lightning/issues/3996))
81+
2682

2783
## [0.10.0] - 2020-10-07
2884

2985
### Added
3086

3187
- Added new Metrics API. ([#3868](https://github.com/PyTorchLightning/pytorch-lightning/pull/3868), [#3921](https://github.com/PyTorchLightning/pytorch-lightning/pull/3921))
3288
- Enable PyTorch 1.7 compatibility ([#3541](https://github.com/PyTorchLightning/pytorch-lightning/pull/3541))
33-
- Added `LightningModule.to_torchscript` to support exporting as `ScriptModule` ([#3258](https://github.com/PyTorchLightning/pytorch-lightning/pull/3258/))
89+
- Added `LightningModule.to_torchscript` to support exporting as `ScriptModule` ([#3258](https://github.com/PyTorchLightning/pytorch-lightning/pull/3258))
3490
- Added warning when dropping unpicklable `hparams` ([#2874](https://github.com/PyTorchLightning/pytorch-lightning/pull/2874))
3591
- Added EMB similarity ([#3349](https://github.com/PyTorchLightning/pytorch-lightning/pull/3349))
3692
- Added `ModelCheckpoint.to_yaml` method ([#3048](https://github.com/PyTorchLightning/pytorch-lightning/pull/3048))

0 commit comments

Comments
 (0)