-
According to https://botorch.org/api/acquisition.html, currently, Is it possible to extend this to 4 candidates' comparisons, and how? For example, if x1, x2, x3, and x4 are estimated as four optimize_acqf candidates. 4 candidates would be able to provide C(4, 2)=6 pairwise comparison results. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
cc @ItsMrLin |
Beta Was this translation helpful? Give feedback.
-
Hi @changkun, currently analytical EUBO (i.e., |
Beta Was this translation helpful? Give feedback.
Hi @changkun, currently analytical EUBO (i.e.,
AnalyticExpectedUtilityOfBestOption
) is specifically designed for the q=2 use case. If you need to have q > 2, qEI (https://botorch.org/api/acquisition.html#botorch.acquisition.monte_carlo.qExpectedImprovement) is usually a useful acquisition function choice in practice.