Skip to content

Commit dbbaaf9

Browse files
vizier-teamcopybara-github
authored andcommitted
Increases the default signal-to-noise threshold in GP-UCB-PE.
PiperOrigin-RevId: 782007942
1 parent 9868dfa commit dbbaaf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vizier/_src/algorithms/designers/gp_ucb_pe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ class UCBPEConfig(eqx.Module):
106106
# is below this threshold, the designer considers the noise to be high and may
107107
# explore more aggressively. Set to 0.0 to disable this feature.
108108
signal_to_noise_threshold: jt.Float[jt.Array, ''] = eqx.field(
109-
default=0.1, converter=jnp.asarray
109+
default=0.7, converter=jnp.asarray
110110
)
111111
# Whether to optimize the set acquisition function for exploration.
112112
optimize_set_acquisition_for_exploration: bool = eqx.field(

0 commit comments

Comments
 (0)