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
//! MLPBoost module.

pub mod mlpboost_algorithm;

#[cfg(not(feature="gurobi"))]
mod lp_model;

#[cfg(feature="gurobi")]
mod gurobi_lp_model;


pub use mlpboost_algorithm::MLPBoost;