smartcore 0.2.0

The most advanced machine learning library in rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod first_order;
pub mod line_search;

pub type F<'a, T, X> = dyn for<'b> Fn(&'b X) -> T + 'a;
pub type DF<'a, X> = dyn for<'b> Fn(&'b mut X, &'b X) + 'a;

#[derive(Debug, PartialEq)]
pub enum FunctionOrder {
    SECOND,
    THIRD,
}