Lower Confidence Bound #1488
-
Hello, I have a minimization problem and I would like to use Lower Confidence Bound as the acquisition function. I see that Upper Confidence Bound is available in Botorch. If I set |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @nikitrian. Setting |
Beta Was this translation helpful? Give feedback.
Hi @nikitrian. Setting
maximize=False
will give you the negated LCB, i.e., it will return - mean + beta * std (see https://github.com/pytorch/botorch/blob/main/botorch/acquisition/analytic.py#L336-L339). If you then maximize this, e.g., usingoptimize_acqf
, the candidate you get would be the point minimizing the LCB.