miniboosts 0.4.0

MiniBoosts: A collection of boosting algorithms written in Rust 🦀
Documentation
1
2
3
4
5
6
7
//! `TotalBoost`.
//! This algorithm is originally invented in this paper:
//! [Totally corrective boosting algorithms that maximize the margin](https://dl.acm.org/doi/10.1145/1143844.1143970)
//! by Manfred K. Warmuth, Jun Liao, and Gunnar Rätsch.
pub mod totalboost_algorithm;

pub use totalboost_algorithm::TotalBoost;