Skip to content

Commit bd7a507

Browse files
committed
adding missing changelogs
1 parent aeaa6b2 commit bd7a507

File tree

2 files changed

+30
-8
lines changed

2 files changed

+30
-8
lines changed

CHANGELOG.md

Lines changed: 29 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
66

7-
## Unreleased
8-
9-
### Fixed
10-
11-
- Fixed `LoggerConnector` to have logged metrics on root device in DP ([#4138](https://github.com/PyTorchLightning/pytorch-lightning/pull/4138))
127

13-
14-
## [1.1.0rc] - 2020-12-02
8+
## [1.1.0rc2] - 2020-12-02
159

1610
### Added
1711

@@ -79,6 +73,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
7973
- Added `Pytorch Geometric` integration example with Lightning ([#4568](https://github.com/PyTorchLightning/pytorch-lightning/pull/4568))
8074

8175

76+
- Enabled `self.log` in most functions ([#4969](https://github.com/PyTorchLightning/pytorch-lightning/pull/4969))
77+
78+
79+
- Added changeable extension variable for model checkpoints ([#4977](https://github.com/PyTorchLightning/pytorch-lightning/pull/4977))
80+
81+
82+
- Added Commet `experiment_key` argument to online mode example ([#4997](https://github.com/PyTorchLightning/pytorch-lightning/pull/4997))
83+
84+
8285
### Changed
8386

8487
- Removed `multiclass_roc` and `multiclass_precision_recall_curve`, use `roc` and `precision_recall_curve` instead ([#4549](https://github.com/PyTorchLightning/pytorch-lightning/pull/4549))
@@ -98,6 +101,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
98101
- Changed `Simple Profiler` report to order by percentage time spent + num calls ([#4880](https://github.com/PyTorchLightning/pytorch-lightning/pull/4880))
99102

100103

104+
- Simplify optimization Logic ([#4984](https://github.com/PyTorchLightning/pytorch-lightning/pull/4984))
105+
106+
107+
- Classification metrics overhaul ([#4837](https://github.com/PyTorchLightning/pytorch-lightning/pull/4837))
108+
109+
101110
### Deprecated
102111

103112
- Deprecated `prefix` argument in `ModelCheckpoint` ([#4765](https://github.com/PyTorchLightning/pytorch-lightning/pull/4765))
@@ -117,12 +126,25 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
117126

118127
- Added feature to move tensors to CPU before saving ([#4309](https://github.com/PyTorchLightning/pytorch-lightning/pull/4309))
119128

129+
120130
- Fixed `LoggerConnector` to have logged metrics on root device in DP ([#4138](https://github.com/PyTorchLightning/pytorch-lightning/pull/4138))
121131

122132

123133
- Auto convert tensors to contiguous format when `gather_all` ([#4907](https://github.com/PyTorchLightning/pytorch-lightning/pull/4907))
124134

125135

136+
- Fixed `LoggerConnector` to have logged metrics on root device in DP ([#4138](https://github.com/PyTorchLightning/pytorch-lightning/pull/4138))
137+
138+
139+
- Fixed `PYTHONPATH` for ddp test model ([#4528](https://github.com/PyTorchLightning/pytorch-lightning/pull/4528))
140+
141+
142+
- Fixed allowing logger to support indexing ([#4595](https://github.com/PyTorchLightning/pytorch-lightning/pull/4595))
143+
144+
145+
- Fixed DDP and `manual_optimisation` ([#4976](https://github.com/PyTorchLightning/pytorch-lightning/pull/4976))
146+
147+
126148
## [1.0.8] - 2020-11-24
127149

128150
### Added

pytorch_lightning/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Root package info."""
22

3-
__version__ = '1.1.0rc1'
3+
__version__ = '1.1.0rc2'
44
__author__ = 'William Falcon et al.'
55
__author_email__ = '[email protected]'
66
__license__ = 'Apache-2.0'

0 commit comments

Comments
 (0)