Skip to main content

warm_start_optimize

Function warm_start_optimize 

Source
pub fn warm_start_optimize<F>(
    objective: F,
    bounds: Vec<(f64, f64)>,
    prior_runs: Vec<PriorRun>,
    n_calls: usize,
    seed: Option<u64>,
) -> OptimizeResult<WarmStartResult>
where F: FnMut(&[f64]) -> f64,
Expand description

Run Bayesian optimization with warm-starting from prior runs.

ยงArguments

  • objective - The objective function to minimize.
  • bounds - Search space bounds.
  • prior_runs - Prior optimization runs to warm-start from.
  • n_calls - Number of evaluations on the target task.
  • seed - Optional random seed.