Trisha Shetty (Editor)

Variational message passing

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

Variational message passing (VMP) is an approximate inference technique for continuous- or discrete-valued Bayesian networks, with conjugate-exponential parents, developed by John Winn. VMP was developed as a means of generalizing the approximate variational methods used by such techniques as Latent Dirichlet allocation and works by updating an approximate distribution at each node through messages in the node's Markov blanket.

Contents

Likelihood Lower Bound

Given some set of hidden variables H and observed variables V , the goal of approximate inference is to lower-bound the probability that a graphical model is in the configuration V . Over some probability distribution Q (to be defined later),

ln P ( V ) = H Q ( H ) ln P ( H , V ) P ( H | V ) = H Q ( H ) [ ln P ( H , V ) Q ( H ) ln P ( H | V ) Q ( H ) ] .

So, if we define our lower bound to be

L ( Q ) = H Q ( H ) ln P ( H , V ) Q ( H ) ,

then the likelihood is simply this bound plus the relative entropy between P and Q . Because the relative entropy is non-negative, the function L defined above is indeed a lower bound of the log likelihood of our observation V . The distribution Q will have a simpler character than that of P because marginalizing over P is intractable for all but the simplest of graphical models. In particular, VMP uses a factorized distribution Q :

Q ( H ) = i Q i ( H i ) ,

where H i is a disjoint part of the graphical model.

Determining the Update Rule

The likelihood estimate needs to be as large as possible; because it's a lower bound, getting closer log P improves the approximation of the log likelihood. By substituting in the factorized version of Q , L ( Q ) , parameterized over the hidden nodes H i as above, is simply the negative relative entropy between Q j and Q j plus other terms independent of Q j if Q j is defined as

Q j ( H j ) = 1 Z e E j { ln P ( H , V ) } ,

where E j { ln P ( H , V ) } is the expectation over all distributions Q i except Q j . Thus, if we set Q j to be Q j , the bound L is maximized.

Messages in Variational Message Passing

Parents send their children the expectation of their sufficient statistic while children send their parents their natural parameter, which also requires messages to be sent from the co-parents of the node.

Relationship to Exponential Families

Because all nodes in VMP come from exponential families and all parents of nodes are conjugate to their children nodes, the expectation of the sufficient statistic can be computed from the normalization factor.

VMP Algorithm

The algorithm begins by computing the expected value of the sufficient statistics for that vector. Then, until the likelihood converges to a stable value (this is usually accomplished by setting a small threshold value and running the algorithm until it increases by less than that threshold value), do the following at each node:

  1. Get all messages from parents
  2. Get all messages from children (this might require the children to get messages from the co-parents)
  3. Compute the expected value of the nodes sufficient statistics

Constraints

Because every child must be conjugate to its parent, this limits the types of distributions that can be used in the model. For example, the parents of a Gaussian distribution must be a Gaussian distribution (corresponding to the Mean) and a gamma distribution (corresponding to the precision, or one over σ in more common parameterizations). Discrete variables can have Dirichlet parents, and Poisson and exponential nodes must have gamma parents. However, if the data can be modeled in this manner, VMP offers a generalized framework for providing inference.

References

Variational message passing Wikipedia