Dave and I were recently talking about Asuncion et al.’s wonderful recent paper “On Smoothing and Inference for Topic Models.” One thing that caught our eye was the CVB0 inference method for topic models, which is described as a first-order approximation of the collapsed variational Bayes approach. The odd thing is that this first-order approximation performs better than other, more “principled” approaches. I want to try to understand why. Here’s my current less-than-satisfactory stab:
Let me just lay out the problem. Suppose I want to approximate the marginal posterior over topic assignments in a topic model given the observed words
,
We can expand this probability using an expectation,
We can’t compute the expectation analytically, so we must turn to an approximate inference technique. One technique is to run a Gibbs sampler whence we get samples from the joint posterior over topic assignments
Then using these samples we approximate the expectation,
In the case of LDA, this conditional probability is proportional to
where
is the Dirichlet hyperparameter for topic proportion vectors;
is the Dirichlet hyperparameter for the topic multinomials;
-
is the number of times topic
has been assigned to word
;
-
is the number of times topic
has been assigned overall;
-
is the number of times topic
has been assigned in document
Note that the above counts do not include the current value of (hence the superscript).
Instead of the Gibbs sampling approach, we could also approximate the expectation by taking a first order approximation (which we denote ),
where the expectations are taken with respect to Because the terms in the expectations are simple sums, they can be computed solely as functions of
. For example,
Thus, the solution to this approximation is exactly the CVB0 technique described in the paper. Note that I never directly introduced the concept of a variational distribution! CVB0 is simply a first-order approximation to the true expectations; in contrast, the second-order CVB approximation is an approximation of the variational expectations. So maybe that’s the answer to the puzzle: sometimes a first-order approximation to the true value is better than a second-order approximation to a surrogate objective.
Does anyone have any other explanations?