miniboosts 0.3.6

MiniBoosts: A collection of boosting algorithms written in Rust 🦀
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! SquareLev algorithms.
//! - SquareLevR
//! - SquareLevC
//! - ExpLev
//! - ExpIterLev
pub mod square_lev_r;
// pub mod square_lev_c;
// pub mod exp_lev;
// pub mod exp_iter_lev;


pub use square_lev_r::SquareLevR;