Skip to content

sb_bagging

Sampling, Validation and ML Diagnostics

Combines ensemble variance reduction with overlap-aware sampling.

f^(x)=1Bb=1Bfb(x)\hat f(x)=\frac{1}{B}\sum_{b=1}^{B} f_b(x)

SbPseq(u)S_b\sim P_{seq}(u)

use openquant::sb_bagging::SequentiallyBootstrappedBaggingClassifier;
let bag = SequentiallyBootstrappedBaggingClassifier::new(100);
  • SequentiallyBootstrappedBaggingClassifier
  • SequentiallyBootstrappedBaggingRegressor
  • MaxSamples
  • MaxFeatures
  • Sequential bootstrap improves diversity under event overlap.
  • Tune max_samples/max_features with out-of-sample monitoring.