Skip to content

Commit

Permalink
Merge pull request #309 from kozistr/fix/ci
Browse files Browse the repository at this point in the history
[Fix] CI
  • Loading branch information
kozistr authored Dec 6, 2024
2 parents d1db791 + a66b877 commit 913f7b7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions docs/changelogs/v3.3.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,10 @@

### Feature

### Bug

* Fix `bias_correction` in `AdamG` optimizer. (#305, #308)

### Contributions

thanks to @Vectorrent
2 changes: 1 addition & 1 deletion tests/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@
(GrokFastAdamW, {'lr': 5e0, 'weight_decay': 1e-3, 'grokfast_after_step': 1}, 5),
(Kate, {'lr': 5e-2}, 10),
(StableAdamW, {'lr': 1e0}, 5),
(AdamG, {'lr': 1e0}, 20),
(AdamG, {'lr': 1e0, 'p': 0.5}, 60),
(AdEMAMix, {'lr': 1e0}, 3),
(AdEMAMix, {'lr': 1e0, 't_alpha_beta3': 5}, 3),
(
Expand Down

0 comments on commit 913f7b7

Please sign in to comment.