Skip to content

Commit

Permalink
Use observational noise instead of modelled noise
Browse files Browse the repository at this point in the history
  • Loading branch information
langdal committed May 6, 2024
1 parent 7449d6a commit 7436200
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion optimizerapi/optimizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def __handle_run(body) -> dict:
result = optimizer.tell(Xi, Yi)
if n_objectives == 1 and len(result.models) > 0:
if use_actual_measurement_histogram:
optimizer.add_modelled_noise()
optimizer.add_observational_noise()
result = optimizer.get_result()
result = [result]
else:
Expand Down

0 comments on commit 7436200

Please sign in to comment.