L-BFGS updated P matrix #4
Unanswered
LiuZhexuan
asked this question in
Q&A
Replies: 1 comment 1 reply
-
As far as I understand, L-BFGS doesn't construct the Hessian matrix explicitly. Hence, I assume you are considering the normal BFGS algorithm. One problem with BFGS is that in the standard algorithm, the updates result in a dense P matrix. Hence, you probably need some kind of sparsity preserving L-BFGS update. As long as the sparsity pattern doesn't change (which it doesn't in the dense case), you can update the P matrix without internal memory allocations. What kind of problem are you trying to solve? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to find a subproblem solver for my SQP solver. Target problems are too complicated to provide matrix P since it requires second order derivatives for the original problem. Is there a way to use L-BFGS updated P matrix?
Otherwise I have to give dense P matrix to QP subproblem solver and it may be impossible to solve.
Beta Was this translation helpful? Give feedback.
All reactions