Optimization and Gradient Schemes for BED

Summary

Estimating the EIG is only half the job — the goal is to optimize it over designs. Historically optimization wrapped a black-box estimator (grid search, Bayesian optimization, evolutionary methods, coordinate exchange), all slow and poorly scaling because they perform many EIG estimations and cannot exploit gradients. The modern alternative is stochastic-gradient ascent directly on a differentiable EIG bound — first proposed by Huan & Marzouk (2014), made consistent by the debiasing and variational-bound advances, and unified by Foster et al. (2020) into a single optimization over design and variational parameters.

Overview

The review §3.4 separates two eras of design optimization: estimator-wrapping schemes (the historical norm) and gradient-based schemes (the modern approach), the latter enabled by the §3.3 estimators being differentiable in .

Main Content

Estimator-wrapping optimizers (the old way)

Most classical schemes treat the EIG estimator as a black box and optimize around it:

  • simple discretization / enumeration of candidate designs (sometimes with dynamic resource allocation),
  • Bayesian optimization,
  • evolutionary algorithms,
  • coordinate exchange.

All can be extremely slow (many EIG estimations per optimization), scale poorly to high-dimensional design spaces, and cannot exploit problem-specific gradient information. Sampling-based approaches that couple outer sampling with optimization over (extended-space methods) can help but need custom proposals.

Stochastic-gradient schemes (the modern way)

The unified stochastic-gradient bound (Rainforth 2023, Eq. 15 = Foster 2020)

Stochastic gradients side-step EIG approximation by directly leveraging small-sample estimates of . Foster et al. (2020) introduced a unified approach that simultaneously maximizes a variational lower bound and the design. The crucial adjustment that turns the NMC upper bound into a usable lower bound for ascent is including the outer sample in the contrastive denominator (this is PCE / ACE):

Tight when matches the true posterior; tightness controlled by ; usable in conjunction with the NMC upper bound to bound the true EIG from both sides.

Implicit models and the MLMC route (Rainforth 2023 §3.4.1)

Foster et al. (2020) further showed the bound stays valid when is replaced by any unnormalized approximation — a mechanism for implicit likelihoods (Likelihood-Free ACE and Gradient Estimation). Independently, Kleinegesse & Gutmann (2020) showed the MINE-style MI bound can be used the same way, collapsing posterior and likelihood approximations into one “critic” network — and gave the first practical demonstration in implicit-likelihood settings. The Goda et al. (2022) MLMC approach provides unbiased finite-variance estimates of directly, enabling SGA with no variational distribution (higher per-sample cost, not yet empirically compared).

The two recurring difficulties

  1. Bias propagates into design. Earlier stochastic-gradient schemes (Huan & Marzouk 2014; Carlon et al. 2020) used gradients of biased estimators (Laplace, plain NMC), so they could converge to sub-optimal designs. The importance of debiasing schemes and variational bounds is precisely that they make the gradient ascent consistent.
  2. Discrete / non-continuous designs. Gradient methods need a continuous, differentiable design space. When design decisions are discrete (or the likelihood is non-smooth), relaxation schemes can sometimes help, but the review flags this as not yet fully resolved.

Connections

See Also