Hamiltonian Monte Carlo

From The Right Wiki
Jump to navigationJump to search
File:Hamiltonian Monte Carlo.gif
Hamiltonian Monte Carlo sampling a two-dimensional probability distribution

The Hamiltonian Monte Carlo algorithm (originally known as hybrid Monte Carlo) is a Markov chain Monte Carlo method for obtaining a sequence of random samples whose distribution converges to a target probability distribution that is difficult to sample directly. This sequence can be used to estimate integrals of the target distribution, such as expected values and moments. Hamiltonian Monte Carlo corresponds to an instance of the Metropolis–Hastings algorithm, with a Hamiltonian dynamics evolution simulated using a time-reversible and volume-preserving numerical integrator (typically the leapfrog integrator) to propose a move to a new point in the state space. Compared to using a Gaussian random walk proposal distribution in the Metropolis–Hastings algorithm, Hamiltonian Monte Carlo reduces the correlation between successive sampled states by proposing moves to distant states which maintain a high probability of acceptance due to the approximate energy conserving properties of the simulated Hamiltonian dynamic when using a symplectic integrator. The reduced correlation means fewer Markov chain samples are needed to approximate integrals with respect to the target probability distribution for a given Monte Carlo error. The algorithm was originally proposed by Simon Duane, Anthony Kennedy, Brian Pendleton and Duncan Roweth in 1987 for calculations in lattice quantum chromodynamics.[1] In 1996, Radford M. Neal showed how the method could be used for a broader class of statistical problems, in particular artificial neural networks.[2] However, the burden of having to provide gradients of the Bayesian network delayed the wider adoption of the algorithm in statistics and other quantitative disciplines, until in the mid-2010s the developers of Stan implemented HMC in combination with automatic differentiation.[3]

Algorithm

Suppose the target distribution to sample is f(x) for xd (d1) and a chain of samples X0,X1,X2, is required. The Hamilton's equations are

dxidt=Hpianddpidt=Hxi

where xi and pi are the ith component of the position and momentum vector respectively and H is the Hamiltonian. Let M be a mass matrix which is symmetric and positive definite, then the Hamiltonian is

H(x,p)=U(x)+12pTM1p

where U(x) is the potential energy. The potential energy for a target is given as

U(x)=lnf(x)

which comes from the Boltzmann's factor. Note that the Hamiltonian H is dimensionless in this formulation because the exponential probability weight exp(H) has to be well defined. For example, in simulations at finite temperature T the factor kBT (with the Boltzmann constant kB) is directly absorbed into U and M. The algorithm requires a positive integer for number of leapfrog steps L and a positive number for the step size Δt. Suppose the chain is at Xn=xn. Let xn(0)=xn. First, a random Gaussian momentum pn(0) is drawn from N(0,M). Next, the particle will run under Hamiltonian dynamics for time LΔt, this is done by solving the Hamilton's equations numerically using the leapfrog algorithm. The position and momentum vectors after time Δt using the leapfrog algorithm are:[4]

pn(t+Δt2)=pn(t)Δt2U(x)|x=xn(t)
xn(t+Δt)=xn(t)+ΔtM1pn(t+Δt2)
pn(t+Δt)=pn(t+Δt2)Δt2U(x)|x=xn(t+Δt)

These equations are to be applied to xn(0) and pn(0) L times to obtain xn(LΔt) and pn(LΔt). The leapfrog algorithm is an approximate solution to the motion of non-interacting classical particles. If exact, the solution will never change the initial randomly-generated energy distribution, as energy is conserved for each particle in the presence of a classical potential energy field. In order to reach a thermodynamic equilibrium distribution, particles must have some sort of interaction with, for example, a surrounding heat bath, so that the entire system can take on different energies with probabilities according to the Boltzmann distribution. One way to move the system towards a thermodynamic equilibrium distribution is to change the state of the particles using the Metropolis–Hastings algorithm. So first, one applies the leapfrog step, then a Metropolis-Hastings step. The transition from Xn=xn to Xn+1 is

Xn+1|Xn=xn={xn(LΔt)with probability α(xn(0),xn(LΔt))xn(0)otherwise

where

α(xn(0),xn(LΔt))=min(1,exp[H(xn(LΔt),pn(LΔt))]exp[H(xn(0),pn(0))]).

A full update consists of first randomly sampling the momenta p (independently of the previous iterations), then integrating the equations of motion (e.g. with leapfrog), and finally obtaining the new configuration from the Metropolis-Hastings accept/reject step. This updating mechanism is repeated to obtain Xn+1,Xn+2,Xn+3,.

No U-Turn Sampler

The No U-Turn Sampler (NUTS)[5] is an extension by controlling L automatically. Tuning L is critical. For example, in the one dimensional N(0,1/k) case, the potential is U(x)=kx2/2 which corresponds to the potential of a simple harmonic oscillator. For L too large, the particle will oscillate and thus waste computational time. For L too small, the particle will behave like a random walk. Loosely, NUTS runs the Hamiltonian dynamics both forwards and backwards in time randomly until a U-Turn condition is satisfied. When that happens, a random point from the path is chosen for the MCMC sample and the process is repeated from that new point. In detail, a binary tree is constructed to trace the path of the leap frog steps. To produce a MCMC sample, an iterative procedure is conducted. A slice variable UnUniform(0,exp(H[xn(0),pn(0)])) is sampled. Let xn+ and pn+ be the position and momentum of the forward particle respectively. Similarly, xn and pn for the backward particle. In each iteration, the binary tree selects at random uniformly to move the forward particle forwards in time or the backward particle backwards in time. Also for each iteration, the number of leap frog steps increase by a factor of 2. For example, in the first iteration, the forward particle moves forwards in time using 1 leap frog step. In the next iteration, the backward particle moves backwards in time using 2 leap frog steps. The iterative procedure continues until the U-Turn condition is met, that is

(xn+xn)pn<0or.(xn+xn)pn+<0

or when the Hamiltonian becomes inaccurate

exp[H(xn+,pn+)+δ]<Un

or

exp[H(xn,pn)+δ]<Un

where, for example, δ=1000. Once the U-Turn condition is met, the next MCMC sample, xn+1, is obtained by sampling uniformly the leap frog path traced out by the binary tree {xn,,xn(Δt),xn(0),xn(Δt),,xn+} which satisfies

Un<exp[H(xn+1,pn+1)]

This is usually satisfied if the remaining HMC parameters are sensible.

See also

References

  1. Duane, Simon; Kennedy, Anthony D.; Pendleton, Brian J.; Roweth, Duncan (1987). "Hybrid Monte Carlo". Physics Letters B. 195 (2): 216–222. Bibcode:1987PhLB..195..216D. doi:10.1016/0370-2693(87)91197-X.
  2. Neal, Radford M. (1996). "Monte Carlo Implementation". Bayesian Learning for Neural Networks. Lecture Notes in Statistics. Vol. 118. Springer. pp. 55–98. doi:10.1007/978-1-4612-0745-0_3. ISBN 0-387-94724-8.
  3. Gelman, Andrew; Lee, Daniel; Guo, Jiqiang (2015). "Stan: A Probabilistic Programming Language for Bayesian Inference and Optimization". Journal of Educational and Behavioral Statistics. 40 (5): 530–543. doi:10.3102/1076998615606113. S2CID 18351694.
  4. Betancourt, Michael (2018-07-15). "A Conceptual Introduction to Hamiltonian Monte Carlo". arXiv:1701.02434 [stat.ME].
  5. Hoffman, Matthew D; Gelman, Andrew (2014). "The No-U-turn sampler: adaptively setting path lengths in Hamiltonian Monte Carlo". Journal of Machine Learning Research. 15 (1): 1593–1623. Retrieved 2024-03-28.

Further reading

  • Betancourt, Michael; Girolami, Mark (2015). "Hamiltonian Monte Carlo for Hierarchical Models". In Upadhyay, Satyanshu Kumar; et al. (eds.). Current Trends in Bayesian Methodology with Applications. CRC Press. pp. 79–101. ISBN 978-1-4822-3511-1.
  • Betancourt, Michael (2018). "A Conceptual Introduction to Hamiltonian Monte Carlo". arXiv:1701.02434 [stat.ME].
  • Barbu, Adrian; Zhu, Song-Chun (2020). "Hamiltonian and Langevin Monte Carlo". Monte Carlo Methods. Singapore: Springer. pp. 281–326. ISBN 978-981-13-2970-8.
  • Neal, Radford M (2011). "MCMC Using Hamiltonian Dynamics" (PDF). In Steve Brooks; Andrew Gelman; Galin L. Jones; Xiao-Li Meng (eds.). Handbook of Markov Chain Monte Carlo. Chapman and Hall/CRC. ISBN 9781420079418.

External links