From 161a9a839478988695f1f88aaf0bf9652e7e9dd8 Mon Sep 17 00:00:00 2001 From: Max Balandat Date: Sun, 22 Sep 2024 14:57:54 -0700 Subject: [PATCH] Fix typo in optimize_homotopy (#2549) Summary: Pull Request resolved: https://github.com/pytorch/botorch/pull/2549 see title Reviewed By: saitcakmak Differential Revision: D63236195 fbshipit-source-id: c85b83b8320eb460f9aad89309705cb17e4e2b9b --- botorch/optim/optimize_homotopy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/botorch/optim/optimize_homotopy.py b/botorch/optim/optimize_homotopy.py index 8b89a7d80e..f0077f8522 100644 --- a/botorch/optim/optimize_homotopy.py +++ b/botorch/optim/optimize_homotopy.py @@ -78,7 +78,7 @@ def optimize_acqf_homotopy( final_options: Options for candidate generation in the last homotopy step. batch_initial_conditions: A tensor to specify the initial conditions. Set this if you do not want to use default initialization strategy. - post_processing_func: Post processing function (such as roundingor clamping) + post_processing_func: Post processing function (such as rounding or clamping) that is applied before choosing the final candidate. """ candidate_list, acq_value_list = [], []