Quasi-Newton Methods
Learn how to approximate Newton’s methods when Hessians are difficult or expensive to compute.
We'll cover the following...
Quasi-Newton methods are a class of second-order optimization algorithms that are particularly useful when the function’s Hessian is difficult to compute or not available.
Consider the update rule of the Newton algorithm at the time
Here,
The key idea behind quasi-Newton methods is to approximate the inverse of Hessian using only the first-order derivative information, i.e., the gradient. This makes these methods more computationally efficient than Newton’s method, especially for problems with many variables. The update rule of quasi-Newton methods is ...