miniboosts 0.4.0

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 perturbed_lp_model;

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


pub use mlpboost_algorithm::MLPBoost;