summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorTim Dettmers <tim.dettmers@gmail.com>2021-11-29 08:21:05 -0800
committerTim Dettmers <tim.dettmers@gmail.com>2021-11-29 08:21:05 -0800
commit108cf9fc1f8c6bc0360a49ce790699928883b3d3 (patch)
tree57ed09eaa584f244f5376894504d2eb042372316 /CHANGELOG.md
parentb3fe8a6d0f53e3e81a4a6bc7385ce86077abf690 (diff)
Fixed unsafe use of eval. #8
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e943fa2..d12af22 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -41,8 +41,9 @@ Docs:
### 0.26.0:
Features:
- - Added Adagrad (without grad clipping) as 32-bit and 8-bit block-wise optimizer
- - Added AdamW (copy of Adam with weight decay init 1e-2)
+ - Added Adagrad (without grad clipping) as 32-bit and 8-bit block-wise optimizer.
+ - Added AdamW (copy of Adam with weight decay init 1e-2). #10
Bug fixes:
- - Fixed a bug where weight decay was incorrectly applied to 32-bit Adam
+ - Fixed a bug where weight decay was incorrectly applied to 32-bit Adam. #13
+ - Fixed an unsafe use of eval. #8