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
14
15
16
//! The core library for `Hypothesis` traits.

pub(crate) mod hypothesis_traits;
pub(crate) mod weighted_majority;
pub(crate) mod naive_aggregation;


pub use hypothesis_traits::{
    Classifier,
    Regressor,
};

pub use weighted_majority::WeightedMajority;
pub use naive_aggregation::NaiveAggregation;