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
13
//! `SoftBoost`.
//! This algorithm is based on this paper: 
//! [Boosting Algorithms for Maximizing the Soft Margin](https://papers.nips.cc/paper/2007/hash/cfbce4c1d7c425baf21d6b6f2babe6be-Abstract.html) 
//! by Gunnar Rätsch, Manfred K. Warmuth, and Laren A. Glocer.
pub mod softboost_algorithm;

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

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

pub use softboost_algorithm::SoftBoost;