Skip to content

Commit

Permalink
optim(brackets): lower the number of first stage samples for BO strat (
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiebergman authored Jan 27, 2025
1 parent 04c4cbe commit 1c7f9d2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion neps/optimizers/algorithms.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,11 @@ def _bracket_optimizer( # noqa: C901, PLR0912, PLR0915
)

# TODO: Parametrize?
two_stage_batch_sample_size = 100
# NOTE: Deviation from PriorBand paper, which used 10
# we can juice lot more from the BO now that we use BoTorch.
# However the of more first stage samples is not clear that more
# is better.
two_stage_batch_sample_size = 30

gp_parameters = {**parameters, **pipeline_space.fidelities}
gp_sampler = GPSampler(
Expand Down

0 comments on commit 1c7f9d2

Please sign in to comment.