-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add lr_scheduler_solver
and customized lr_scheduler
classes
#5942
Conversation
Codecov Report
@@ Coverage Diff @@
## master #5942 +/- ##
==========================================
- Coverage 84.51% 84.39% -0.13%
==========================================
Files 359 352 -7
Lines 19738 19632 -106
==========================================
- Hits 16682 16568 -114
- Misses 3056 3064 +8
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Amazing!
…team#5942) Add `lr_scheduler_solver` and customized `lr_scheduler` classes to support getting any learning rate scheduler implemented in pyg and pytorch from its name. Maybe a better location than `utils` like `torch_geometric.optim` in case we develop specific optimization methods for GNNs? Co-authored-by: Guohao Li <lighaime@gmail.com> Co-authored-by: rusty1s <matthias.fey@tu-dortmund.de>
Add
lr_scheduler_solver
and customizedlr_scheduler
classes to support getting any learning rate scheduler implemented in pyg and pytorch from its name. Maybe a better location thanutils
liketorch_geometric.optim
in case we develop specific optimization methods for GNNs?