torch_numopt.algorithms.newton#
Newton-type methods using exact Hessian (full or block).
These optimizers compute the exact second-order derivatives and use them to form a quadratic model. They offer fast local convergence but may be expensive for large models.
Classes
|
Newton method with exact Hessian (full or block) and fixed learning rate. |
|
Newton-CG method (inexact Newton) using conjugate gradient to solve the linear system. |
|
Newton-CG with line search. |
|
Newton-CG with trust region (Steihaug-Toint). |
|
Newton method with exact Hessian and line search. |
|
Newton method with exact Hessian and trust region. |