scry-learn 0.1.0

Machine learning toolkit in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
// SPDX-License-Identifier: MIT OR Apache-2.0
//! Ensemble meta-learning methods.
//!
//! Provides [`VotingClassifier`] for majority/soft voting across multiple
//! models and [`StackingClassifier`] for stacked generalization with a
//! meta-learner trained on out-of-fold predictions.

mod stacking;

pub use stacking::{StackingClassifier, Voting, VotingClassifier};