Skip to content

Commit

Permalink
Scales the initial value of Gaussian likelihood variance i.e. noise_v…
Browse files Browse the repository at this point in the history
…ar to X% of Y variance.
  • Loading branch information
TadaSanar committed Jun 8, 2023
1 parent 1055c40 commit f737dd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hper_bo.py
Original file line number Diff line number Diff line change
Expand Up @@ -957,7 +957,7 @@ def bo_sim_target(bo_ground_truth_model_path='./Source_data/C2a_GPR_model_with_u
batch_size=batch_size,
acquisition_jitter=acq_fun_params['jitter'],
acq_fun_params=acq_fun_params,
noise_var = 0.1,
noise_var = 0.1*Y_accum[k].var(),
optimize_restarts = 10,
max_iters = 10000,
exact_feval = (not noise_target)
Expand Down

0 comments on commit f737dd5

Please sign in to comment.