Lecture III

Another service from Omega

An Introduction to Markov Chain Monte Carlo

*****
Lecture III

Lecture III

Abstract

Bringing Metropolis to Statistics, Hastings generalization, Component-wise Metropolis, Gibbs Sampler.

Connection with Statistics

To sample from an arbitrary random vector X Î Rp with pdf f just turn f into a canonical distribution by choosing T and Z(T) and defining an energy function by,

E(x) = -T log f(x) - T log Z(T)
so that,

f(x) = 1
Z(T)
exp ì
í
î
- E(x)
T
ü
ý
þ
Usually we only know f(x) up to a proportionality constant independent of x, i.e.

f(x) = 1
c
h(x)  with   c = ó
õ
h(x) dx
h(x) is assumed to be known and computable but c may be unknown. In this case we take T = 1 and,

E(x) = -log h(x)
as the energy function. This is ok for sampling from f. To compute the mode of f, we can run the simulated annealing algorithm with the above energy but with a general value for T.

Plain Metropolis with Symmetric Proposal Distribution

The plain vanilla Metropolis algorithm generates a stochastic sequence of states, from an arbitrary starting vector x0, and the following rule to go from a current state x to a new state y:

  1. Propose a candidate state y from a proposal distribution, q(y|x) that may depend on the current x. This proposal distribution is assumed to be symmetric in x and y, i.e., for plain vanilla Metropolis,

    q(y|x) = q(x|y)
    this can be easily implemented, e.g., take

    y = x + e
    with e a random vector radially symmetric about 0. Typical choices for the distribution of e are multivariate Cauchy, Gaussian, or T distribution with a few degrees of freedom.

  2. If the new proposed state y uses less energy than the current state x then go there with probability one. If the new state is more expensive, in terms of energy, than the one we are currently on, then test your luck and go there with a probability exponentially decreasing in the difference of energy. More formally the acceptance probability is,

    a(x,y)
    =
    exp ì
    í
    î
    - (E(y) - E(x))+
    T
    ü
    ý
    þ
    =
    min
    { 1, f(y)
    f(x)
    }

The Plain Vanilla Metropolis

{

X0 ¬ x0 (arbitrary)
for t = 0,1,2,¼

{

y ¬  sample from q(·|xt)
u ¬ unif(0,1)

if u £ min{1,f(y)/f(xt)} then Xt+1 ¬ y
else Xt+1 ¬ xt

}

}

Example: Javascript implementation of plain vanilla Metropolis for sampling from N(0,1) with

q(y|x) º unif (x - 1, x + 1)

Solution by Haihong Li

Metropolis-Hastings

A simple modification to the acceptance probabilities used in the plain vanilla algorithm, allows to use non-symmetrical proposal distributions and still have detailed balance. Change the previous formula for a to,

a(x,y) = min
ì
í
î
1, q(x|y) f(y)
q(y|x) f(x)
ü
ý
þ
All we need to do is to check detailed balance, i.e.,

p(y|x) f(x) = p(x|y) f(y) for all  x,y
But this is straight forward to check. When x = y it is obviously true, and for x ¹ y the only way to arrive to y is by accepting it as a proposed candidate. Thus, the above equation just says that,

a(x,y) q(y|x) f(x) = a(y,x) q(x|y) f(y)
which is the same as,

min
ì
í
î
1, q(x|y) f(y)
q(y|x) f(x)
ü
ý
þ
q(y|x) f(x) = min
ì
í
î
1, q(y|x) f(x)
q(x|y) f(y)
ü
ý
þ
q(x|y) f(y)

which is true, since when the min. on one side is 1, the min. on the other side isn't and the denominator cancels with the term outside the parenthesis producing the equality of both sides.

As always, detailed balance is enough to assure that f is the stationary distribution for the chain. But detailed balance is not necessary. It is possible for a chain to have f as its stationary distribution without p(y|x)f(x) = p(x|y)f(y) for all x,y. All that it is needed for stationarity is, (its definition)

f(x) = ó
õ
p(x|y) f(y) dy
i.e., that f be the fix point for the linear operator T, defined by the transition kernel as,

T : f(·) ® ó
õ
p(·|y) f(y) dy

Knowing that f is a stationary distribution for a Markov Chain with transition kernel p(x|y) is not enough to warrant that the chain will eventually sample states according to the density f. It only says that if at some time t the density of Xt is f then it will remain f for all subsequent times since the law of Xt+1 is Tf = f. From the classical fix point theorem of functional analysis we know that if the f's belong to a complete metric space, with distance function d, and the operator T is contractive, i.e.

d(Tf,Tg) £ ld(f,g) with l < 1

then the iterates f0, T(f0), T(T(f0)),¼ converge geometrically in the metric of the space to the unique fix point for T, provided that the initial f0 is not too far from the fix point. Notice that,

if X0 comes from f0 then  Xt comes from Ttf0

Thus, the Markov Chain is expected to have the fix point as its long-run distribution. As we will see later the conditions of the classic fix point theorem are too restrictive. Under mild regularity conditions on the kernel (e.g. when T is only contractive on the average) a large class of Markov Chains will be geometrically ergodic. More on this theme when we look at convergence theorems...

Component-Wise Metropolis

When the dimensionality of the random vector X is large, it is often computationally more efficient to separate the coordinates of X into groups and use proposal distributions that update only one group of coordinates at a time. Towards this end, we introduce the following notation. Let I = {1,2,¼,p} be the set of indices for the coordinates of x. We write,

x = {x1,x2,¼,xp} º xI

If J Ì I we write x-J the set of all coordinates except those in the set J, i.e. x-J = xI\J. Let I1,I2,¼,Im form a partition of I so that x gets separated into m groups,

x = { xI1,¼, xIm }

Start the Metropolis-Hastings algorithm from somewhere and suppose that at time t we are visiting state x, then at time t+1 we either remain at x or we go to y by modifying only one of the m components of x, i.e.,

xt+1 = y = { x-Ik,yIk } for some k

The value of k can be chosen at random among {1,2,¼,m} or one after another cyclically, in which case to have a homogeneous Markov chain we need to define one iteration only after a full sweep over the set of m components is completed. Choosing the components at random eliminates this problem but may end up, by chance, neglecting some of the components for a long time. An intermediate solution is to randomize the order and then update the components in that order. In all these cases the acceptance probability is the usual Metropolis-Hastings formula but when x differs from y in the k component we have,

min
ì
í
î
1, q(x|y) f(y)
q(y|x) f(x)
ü
ý
þ
= min
ì
í
î
1, qk(xIk|yIk,x-Ik) f(yIk|x-Ik)
qk(yIk|xIk,x-Ik) f(xIk|x-Ik)
ü
ý
þ

where qk is the proposal function q for updating component k and ratio f(y)/f(x) is written as the ratio of full conditionals, where,

f(xIk|x-Ik) = f(xIk,x-Ik)
ó
õ
f(yIk,x-Ik) dyIk

By writing the acceptance probability in this way we can see that the Markov Chain associated to the sequence of updates of component k, with all the other components fix at x-Ik, has the full conditional (defined above) as stationary distribution. Eventually all the components end up sampling from the correct conditionals.

Gibbs Sampler

When the proposal distribution for the k component of x is taken as the full conditional itself we get the Gibbs sampler, i.e. when

qk(yIk|xIk,x-Ik) = f(yIk|x-Ik)

In this case the acceptance probability becomes 1 and the Gibbs sampler always accepts the proposal candidates. Gibbs sampling is just a special case of Metropolis. This is the justification to the popular statement: to sample from a joint distribution just sample repeatedly from its one dimensional conditionals given whatever you've seen at the time.

The Plain Vanilla Gibbs

{

X0 ¬ x0 (arbitrary)
for t = 0,1,2,¼

{

k ¬ unif. on {1,2,¼,p}
yk ¬ sample from f(xk|xt-{k})
Xt+1 ¬ {yk,xt-{k}}

}

}

Example: Javascript implementation of Gibbs sampler for generating samples from (X,Y) with one dimensional conditionals given by:

g1(x | y )
=
(1 - y)-1  for  0 < y < x < 1
g2(y | x )
=
3 y2
x3
 for  0 < y < x < 1


File translated from TEX by TTH, version 2.32.
On 5 Jul 1999, 22:59.