miniboosts 0.3.6

MiniBoosts: A collection of boosting algorithms written in Rust 🦀
Documentation
1
2
3
4
5
6
7
//! Corrective ERLPBoost struct.  
//! This algorithm is based on this paper:
//! [On the equivalence of weak learnability and linear separability: new relaxations and efficient boosting algorithms](https://link.springer.com/article/10.1007/s10994-010-5173-z)
//! by Shai Shalev-Shwartz and Yoram Singer.
pub mod cerlpboost_algorithm;

pub use cerlpboost_algorithm::CERLPBoost;