pub fn superforecaster<F>(
bounds: &[(f64, f64)],
fitness: F,
n_initial: usize,
n_bo_iterations: usize,
pce_degree: usize,
seed: u64,
) -> SuperforecasterResultExpand description
Run the full superforecaster pipeline.
- LHS sample
n_initialpoints in the box and evaluate the fitness. - Fit a PCE (degree
pce_degree) → Sobol’ indices (sensitivity). - Warm-start Bayesian optimization with the LHS evaluations and refine
for
n_bo_iterationsiterations.