Value Loss and Entropy Search
Summary
The value loss (VL) frames optimisation as uncovering the lowest function value; its canonical myopic acquisition is Expected Improvement (EI), while Knowledge Gradient (KG) relaxes EI to value improvements in the posterior mean (a global rather than local method, more robust to noise). The information-theoretic losses instead value the information an evaluation yields about the optimiser: entropy search / IAGO and predictive entropy search (PES) target the minimiser (location-information loss), while OPES / max-value entropy search (MES) target the minimum value (value-information loss). These acquisitions are expected entropies — integrals over surrogate posteriors, connecting to the value-of-information integrals of Bayesian Quadrature. Truly overcoming myopia needs multi-step look-ahead: a Bellman/dynamic-programming problem, exponential in the horizon.
Overview
BO offers three loss framings (VL, LIL, VIL). This note develops the VL and its relatives (EI, KG) — Ch. 32 — and the information-theoretic acquisitions derived from LIL and VIL — §33.3. It also treats noisy EI (the winner’s curse) and the multi-step look-ahead needed to escape myopia (§32.4). Concrete closed forms are consolidated in Acquisition Functions.
Main Content
Expected Improvement (VL, myopic)
Expected Improvement as a myopic VL
At step with , GP posterior , and best-so-far , EI approximates the VL by (restricting the returned point to evaluated locations, removing dependence on ). The expected loss (minus the constant ) is
With and Gaussian CDF , this has the closed form
Low (desirable) where is small (exploitation) and/or large (exploration). EI is cheap, multimodal, admits gradient/Hessian, but is empirically under-exploratory: a model believing few evaluations remain feels it cannot afford exploration.
Knowledge Gradient (VL variant, global)
Knowledge Gradient
KG relaxes EI’s restriction that lie among evaluated points. After the th step it takes — the minimiser of the posterior mean after the next evaluation . Defining with , the KG loss is (32.3), giving acquisition
KG values improvements in the posterior mean rather than in the evaluations — a global method (it values impact on beliefs at all locations), where VL/EI are local. It need not evaluate at the minimum (e.g. a quadratic’s minimum is known exactly after 3 evaluations). It is not closed-form (inner minimisation inside the integral) but useful approximations exist. KG introduces risk: the returned may be poorly resolved (high posterior variance), so it may return an unreliable putative minimum.
Noisy Expected Improvement and the winner’s curse
Winner's curse for noisy EI
Managing noise in optimisation is not as benign as in regression. Taking the returned value to be the lowest noisy evaluation commits to returning a value known to be noise-corrupted; in fact the lowest evaluation is probably more noise-corrupted than others — a winner’s curse (Thaler 1988). Hence EI is problematic for substantially noisy objectives. KG is less sensitive: rewarding improvements in the (smoothed) posterior mean ameliorates large negative noise contributions. Osborne, Garnett & Roberts (2009) constrain the returned to be no greater than a threshold, avoiding returning an uncertain putative minimum. Information-theoretic approaches (§33.3) provide a natural solution to noise (Exercise 32.2 quantifies the curse via ).
Information-theoretic acquisitions (LIL / VIL)
The location-information loss (LIL) and value-information loss (VIL) select observations that best yield information about the minimiser and minimum respectively. Every information-theoretic evaluation is in a sense exploratory — its worth is the information it yields, not its value — and all are relatively robust to noise (prospective observations enter only through entropy terms).
Entropy Search (ES) / IAGO
Under the myopic LIL, , the acquisition is the expected posterior entropy of the minimiser:
a conditional entropy. Since on a continuous domain has intractable (and finite mass at boundaries), all implementations discretise , computing (differential entropy would not be reparameterisation-invariant and is hard to compute). IAGO (Villemonteix et al.) and ES (Hennig & Schuler) differ only in implementation.
Predictive Entropy Search (PES)
PES rearranges the LIL acquisition using symmetry of mutual information. Since the prior entropy is independent of ,
and via (33.4),
PES selects identical evaluations to ES/IAGO but the rearrangement (following BALD, Houlsby et al. 2011) is cheaper: is a univariate-Gaussian entropy; the second term conditions on being a minimiser (heuristics: zero gradient, positive curvature at ). Advantage over ES: is built once per step, not afresh for each candidate .
Output-space entropy search (OPES) / Max-value entropy search (MES)
The VIL targets the minimum value . OPES (Hoffman & Ghahramani 2015) and MES (Wang & Jegelka 2017) modify PES by replacing the minimiser with the minimum :
Implementation advantage over PES: the posterior over the minimum is univariate, whereas the minimiser posterior has the dimension of the search domain.
Overcoming myopia — multi-step look-ahead (§32.4)
Full VL as sequential decision-making
Myopia causes under-exploration; ideally an optimiser shifts from explorative to exploitative as its budget depletes, but a myopic strategy is static. The full VL requires marginalising values and locations , where each location follows from optimal future decisions:
This interleaves numerical integration over with optimisation over — a sequential decision problem solvable in principle by dynamic programming (Bellman equation), but with cost exponential in the horizon . Progress is limited to specialisations: independent discrete-valued evaluations (Gittins 1979), 1-D Markov objectives, active search, and batch approximations (González et al. 2016; Jiang et al. 2020) considering future steps, which set aside nesting in favour of a batch model (all locations chosen at once).
Examples
EI's under-exploration on a multimodal GP (Fig. 32.1)
On a multimodal GP posterior, (32.2) shows the expected improvement over at each ; its maximiser gives the next evaluation. EI concentrates near the current best mode — visibly under-exploratory — because myopically it acts as though few evaluations remain and must secure immediate value.
KG needs no evaluation at the minimum
For an objective known to be quadratic, three evaluations pin down the minimum exactly. EI would still waste a sample evaluating at the minimum to lower ; KG, valuing the posterior-mean minimiser , recognises the minimum is already resolved and spends the sample elsewhere.
Connections
- Specialises the loss/acquisition machinery of Bayesian Optimisation; closed forms tabulated in Acquisition Functions.
- EI (32.1) is the global-scale relative of the univariate line-search EI in Probabilistic Step-Size Selection and Line Searches.
- Entropy/expected-entropy acquisitions are value-of-information integrals over GP posteriors — the same integral structure as active Bayesian Quadrature.
- Multi-step look-ahead’s batch relaxation feeds batch BO.
See Also
- Acquisition Functions — PI, EI, UCB, KG closed forms side by side.
- Bayesian Optimisation — the loss framings (VL/LIL/VIL) and myopic reduction.
- Bayesian Quadrature — value-of-information/entropy integrals in integration.
- Further Topics in Global Optimisation — batch, multi-fidelity, high-dimensional extensions.