3 unstable releases

0.2.1 Jun 3, 2019
0.2.0 Jun 3, 2019
0.1.1 Mar 2, 2019

#1611 in Embedded development

Download history 1222/week @ 2023-12-10 859/week @ 2023-12-17 506/week @ 2023-12-24 401/week @ 2023-12-31 763/week @ 2024-01-07 871/week @ 2024-01-14 983/week @ 2024-01-21 817/week @ 2024-01-28 518/week @ 2024-02-04 777/week @ 2024-02-11 1025/week @ 2024-02-18 1195/week @ 2024-02-25 914/week @ 2024-03-03 564/week @ 2024-03-10 846/week @ 2024-03-17 868/week @ 2024-03-24

3,209 downloads per month
Used in 3 crates (via optimization_engine)

MIT/Apache

29KB
591 lines

L-BFGS Build Status

L-BFGS (Low-memory Broyden–Fletcher–Goldfarb–Shanno) is a library for doing estimation and application of Hessians in numerical optimization while using limited memory and never explicitly creating the Hessian. Only simple vector operation are used, as specified by the L-BFGS algorithm.

The specific L-BFGS algorithm implemented here can be found in Algorithm 9.1 (L-BFGS two-loop recursion).

Moreover, the condition for the Cautious-BFGS (C-BFGS) algorithm, specified in D.-H. Li and M. Fukushima, "On the global convergence of the BFGS method for nonconvex unconstrained optimization problems", is used to check the updates of the L-BFGS.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~155KB