#algorithm #optimization #pure #convex #minimize #bfgs #twice-differentiable

my-bfgs

A pure Rust implementation of the BFGS optimization algorithm

3 releases

0.1.2 Feb 1, 2023
0.1.1 Apr 26, 2022
0.1.0 Apr 26, 2022

#1440 in Algorithms

Download history 3/week @ 2024-02-09 72/week @ 2024-02-16 21/week @ 2024-02-23 12/week @ 2024-03-01

108 downloads per month
Used in 2 crates (via consprob-trained)

MIT/Apache

9KB
137 lines

bfgs

This package contains an implementation of BFGS, an algorithm for minimizing convex twice-differentiable functions.

BFGS is explained at a high level in the blog post introducing this package.

In this example, we minimize a 2d function:

extern crate bfgs;
extern crate ndarray;

use ndarray::{Array, Array1};

fn main() {
    let x0 = Array::from_vec(vec![8.888, 1.234]);  // Chosen arbitrarily
    let f = |x: &Array1<f64>| x.dot(x);
    let g = |x: &Array1<f64>| 2.0 * x;
    let x_min = bfgs::bfgs(x0, f, g);
    assert_eq!(x_min, Ok(Array::from_vec(vec![0.0, 0.0])));
}

This project uses cargo-make for builds; to build, run cargo make all.

License: MIT/Apache-2.0


lib.rs:

This package contains an implementation of BFGS, an algorithm for minimizing convex twice-differentiable functions.

BFGS is explained at a high level in the blog post introducing this package.

In this example, we minimize a 2d function:

extern crate my_bfgs as bfgs;
extern crate ndarray;

use ndarray::{Array, Array1};

fn main() {
    let x0 = Array::from_vec(vec![8.888, 1.234]);  // Chosen arbitrarily
    let f = |x: &Array1<f64>| x.dot(x);
    let g = |x: &Array1<f64>| 2.0 * x;
    let x_min = bfgs::bfgs(x0, f, g);
    assert_eq!(x_min, Ok(Array::from_vec(vec![0.0, 0.0])));
}

This project uses cargo-make for builds; to build, run cargo make all.

Dependencies

~1.5MB
~25K SLoC