sb_bagging
Subject
Section titled “Subject”Sampling, Validation and ML Diagnostics
Why This Module Exists
Section titled “Why This Module Exists”Combines ensemble variance reduction with overlap-aware sampling.
Mathematical Foundations
Section titled “Mathematical Foundations”Bagging Predictor
Section titled “Bagging Predictor”
Bootstrap Sampling
Section titled “Bootstrap Sampling”
Usage Examples
Section titled “Usage Examples”Instantiate SB bagging classifier
Section titled “Instantiate SB bagging classifier”use openquant::sb_bagging::SequentiallyBootstrappedBaggingClassifier;
let bag = SequentiallyBootstrappedBaggingClassifier::new(100);API Reference
Section titled “API Reference”Rust API
Section titled “Rust API”SequentiallyBootstrappedBaggingClassifierSequentiallyBootstrappedBaggingRegressorMaxSamplesMaxFeatures
Implementation Notes
Section titled “Implementation Notes”- Sequential bootstrap improves diversity under event overlap.
- Tune max_samples/max_features with out-of-sample monitoring.