File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
- ## [ 0.0.1] - 2020-07-31
8
7
8
+ ## [ 0.0.2] - 2020-08-28
9
+ ### Added
10
+ - add ddp that works with oss with reduce() not all_reduce() (#19 )
11
+ - support for PyTorch v1.6
12
+ - add mixed precision Adam (#40 )
13
+ - Adam optimizer state scaling (#44 )
14
+
15
+ ### Fixed
16
+ - properly restore a sharded optim state (#39 )
17
+ - OSS restore state to proper device (#46 )
18
+ - optim/oss: support optimizers with additional step kwargs (#53 )
19
+ - optim/oss: fix state cast (#56 )
20
+ - fix eval for oss_ddp (#55 )
21
+ - optim/oss: work correctly with LRScheduler (#58 )
22
+
23
+ ## [ 0.0.1] - 2020-07-31
9
24
- Initial release.
Original file line number Diff line number Diff line change 3
3
# This source code is licensed under the BSD license found in the
4
4
# LICENSE file in the root directory of this source tree.
5
5
6
- __version__ = "0.0.1 "
6
+ __version__ = "0.0.2 "
7
7
8
8
################################################################################
9
9
# Import most common subpackages
You can’t perform that action at this time.
0 commit comments