AdaLIPO+TR¶
- class gob.optimizers.decision.AdaLIPO_P.AdaLIPO_P(bounds, n_eval=1000, max_trials=50000, trust_region_radius=0.1, bobyqa_eval=20, verbose=False)[source]¶
Bases:
OptimizerInterface for the AdaLIPO+TR optimizer.
- Parameters:
bounds (ndarray) – The bounds of the search space.
n_eval (int) – The maximum number of function evaluations.
max_trials (int) – The maximum number of potential candidates sampled at each iteration.
trust_region_radius (float) – The trust region radius.
bobyqa_eval (int) – The number of evaluations for the BOBYQA optimizer.
verbose (bool) – Whether to print information about the optimization process.