miniboosts 0.2.1

MiniBoosts: A collection of boosting algorithms written in Rust 🦀
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Struct `Sample` represents a batch sample for training.

/// provides feature struct.
pub mod feature;
/// provides sample struct.
pub mod sample;



pub use sample::Sample;
pub use feature::Feature;