Questions: Bayesian Optimization

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

After 30 Bayesian optimization trials, the acquisition function assigns a high score to a point where the Gaussian process predicts only mediocre performance — lower than the current best. Why would Bayesian optimization choose to evaluate this point?

AThe acquisition function is malfunctioning — it should always select the point with the highest predicted mean
BThe point has high uncertainty, giving it high expected improvement potential even if the mean prediction is mediocre
CBayesian optimization ignores predicted means entirely and maximizes uncertainty only
DThe Gaussian process needs more evaluations before its predictions become reliable enough to trust
Question 2 Multiple Choice

What does a Gaussian process contribute to Bayesian optimization that makes it fundamentally different from random search?

APredicted values at untried points, which random search also provides through interpolation
BBoth predicted values AND calibrated uncertainty estimates at every point, enabling principled exploration
CExact true values at untried points computed from the observed data analytically
DA guarantee that the global optimum will be found within a fixed number of evaluations
Question 3 True / False

Bayesian optimization is most valuable when each objective function evaluation is cheap, because the overhead of fitting and maximizing the Gaussian process is the main computational bottleneck.

TTrue
FFalse
Question 4 True / False

Expected Improvement (EI) as an acquisition function automatically handles the exploration-exploitation tradeoff without requiring a manually tuned exploration parameter.

TTrue
FFalse
Question 5 Short Answer

Explain why Bayesian optimization is more efficient than random search, focusing on how the surrogate model and acquisition function change where the algorithm looks next.

Think about your answer, then reveal below.