Skip to content

Commit

Permalink
Updates the default value for pe_overwrite_probability
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 627118111
  • Loading branch information
vizier-team authored and Copybara-Service committed Apr 22, 2024
1 parent 41f2bcc commit 00ef185
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions vizier/_src/algorithms/designers/gp_ucb_pe.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,10 @@ class UCBPEConfig(eqx.Module):
ucb_overwrite_probability: jt.Float[jt.Array, ''] = eqx.field(
default=0.25, converter=jnp.asarray
)

# Probability of selecting the PE acquisition function when there are new
# completed trials.
pe_overwrite_probability: jt.Float[jt.Array, ''] = eqx.field(
default=0.0, converter=jnp.asarray
default=0.1, converter=jnp.asarray
)

def __repr__(self):
Expand Down

0 comments on commit 00ef185

Please sign in to comment.