Definition
Bridge sampling (Meng-Wong 1996) is a Monte Carlo method for estimating a ratio of normalizing constants — and hence a Bayes factor or a single marginal likelihood — by connecting two densities through an intermediate "bridge" function. For two densities known only up to their constants, pi(θ)=qi(θ)/ci (i=1,2), the identity
c2c1=E1[q2(θ)α(θ)]E2[q1(θ)α(θ)]
holds for any bridge function α(θ) with finite, nonzero expectations, where Ei denotes expectation under pi. Both expectations are estimated from draws already available under each density, so the constant ratio is recovered without sampling from any bridging path.
Key Ideas
- A ratio estimator, not a single-density estimator. Bridge sampling natively estimates c1/c2. To obtain one marginal likelihood c1=p(y), take p2 to be a normalized proposal (e.g. a moment-matched Gaussian on the posterior) whose constant is known.
- Generalises importance and harmonic-mean estimators. Choosing α=1/q2 recovers ordinary importance sampling; α=1/(q1q2) recovers the notoriously unstable harmonic-mean estimator. Bridge sampling's freedom in α is exactly what lets it avoid their failure modes.
- Optimal bridge and overlap. The variance-minimising choice is α∝1/(s1p1+s2p2) (with si the sampling fractions), solved by a short fixed-point iteration. Accuracy hinges on the overlap between p1 and p2: little overlap means high variance, which is why a well-tuned proposal matters.
- Path/thermodynamic sampling as the limit. When the two densities barely overlap, one inserts a sequence of intermediate densities; the continuous limit is path sampling (thermodynamic integration), a close relative that trades more draws for robustness across widely separated densities.
- More stable than harmonic mean, cheaper than adding a sampler. It reuses posterior draws, so it is a common upgrade path from the harmonic-mean or naive importance-sampling marginal-likelihood estimates that are known to be unreliable.
How It Works
- Obtain draws from the posterior p1(θ)=p(θ∣y) (unnormalized q1=p(y∣θ)p(θ), target constant c1=p(y)) and construct a normalized proposal p2 with known constant, drawing a sample from it.
- Initialise the constant ratio (e.g. by importance sampling).
- Iterate the fixed-point recursion for the optimal bridge, alternately updating α and the current estimate of c1/c2 from the two samples, until convergence.
- Return p^(y)=c1; for a Bayes factor between two models, either form the ratio of two such marginal likelihoods or bridge the two posteriors directly.
Why It Matters
- Robust marginal likelihoods for model comparison. Where the harmonic-mean estimator has infinite variance and plain importance sampling degrades in high dimensions, bridge sampling gives stable p(y) estimates — the quantity that drives Bayes factors, Bayesian model selection, and Bayesian model averaging weights.
- A benchmark method in the toolkit. Comparative reviews of Bayes-factor computation (e.g. Han-Carlin (2001)) situate bridge/path sampling alongside the Chib (1995) marginal-likelihood identity and reversible-jump MCMC as the reliable options for standard hierarchical models.
- Reuses existing output. Because it works from draws an analyst already has, bridge sampling adds model-comparison capability without designing a new trans-dimensional sampler.
Open Questions
- Proposal construction in high dimensions. Building a p2 with adequate posterior overlap is hard when the posterior is high-dimensional or multimodal; warp transformations and mixture proposals help but need tuning.
- Bridge vs. Chib vs. reversible jump. Which estimator is most efficient is problem-dependent — Chib's identity excels for Gibbs-sampled hierarchical models, reversible jump for variable-dimension spaces, bridge/path for smooth continuous parameter spaces.
- Error assessment. Reliable Monte Carlo standard errors for the fixed-point estimator, especially under poor overlap, remain an area of active methodology.
Related