-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #337 from kozistr/feature/psgd-optimizer
[Feature] implement PSGD Kron optimizer
- Loading branch information
Showing
22 changed files
with
759 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
### Change Log | ||
|
||
### Feature | ||
|
||
* Implement `FOCUS` optimizer. (#330, #331) | ||
* [First Order Concentrated Updating Scheme](https://arxiv.org/abs/2501.12243) | ||
* Implement `PSGD Kron`. (#337) | ||
* [preconditioned stochastic gradient descent w/ Kron pre-conditioner](https://arxiv.org/abs/1512.04202) | ||
|
||
### Update | ||
|
||
* Support `OrthoGrad` variant to `Ranger25`. (#332) | ||
* `Ranger25` optimizer is my experimental-crafted optimizer, which mixes lots of optimizer variants such as `ADOPT` + `AdEMAMix` + `Cautious` + `StableAdamW` + `Adam-Atan2` + `OrthoGrad`. | ||
|
||
### Fix | ||
|
||
* Add the missing `state` property in `OrthoGrad` optimizer. (#326, #327) | ||
* Add the missing `state_dict`, and `load_state_dict` methods to `TRAC` and `OrthoGrad` optimizers. (#332) | ||
* Skip when the gradient is sparse in `OrthoGrad` optimizer. (#332) | ||
* Support alternative precision training in `SOAP` optimizer. (#333) | ||
* Store SOAP condition matrices as the dtype of their parameters. (#335) | ||
|
||
### Contributions | ||
|
||
thanks to @Vectorrent, @kylevedder |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.