PyLBFGS provides L-BFGS and OWL-QN optimization algorithms for large-scale unconstrained and bound-constrained optimization. Current version is 0.2.0.16, but development appears to be in maintenance mode with infrequent releases.
pip install pylbfgsVerified import paths — ran on the pinned version, not inferred.
Minimize a simple quadratic function using L-BFGS.
Prefer using scipy.optimize.minimize with method='L-BFGS-B' as a more maintained alternative.
Consider switching to scipy.optimize (L-BFGS-B) or pyLBFGS (note different casing: pylbfgs vs pyLBFGS).
Always assign g[:] = ... or use numpy's in-place operations like np.copyto(g, ...).
No dependency data recorded yet.