next up previous contents
Next: Standardized Database Performance Up: Applying the Model Previous: Applying the Model

Expectation and Arg Max

We shall now describe a technique for computing the argmax for a mixture model using the bounding techniques introduced earlier. Traditionally, the mean of each Gaussian is evaluated to determine its probability and the best mean is returned as the arg max. This is not always the correct solution and we derive a technique with which the true arg max can be computed.

Observe the Gaussian mixture model shown in Figure 7.12 (what we get after training the model and observing a new covariate input ${\bar {\bf x}}$. It is composed of 4 Gaussians which are shown alone with dotted lines. We would like to solve for the ${\bf y}$ which maximizes the expression. One may be tempted to just try setting ${\bf y}$ to the prototype of each Gaussian $\mu^m$ and checking to see which one of these is the best. The 4 prototypes points are shown as circles on the pdf and none of them is the maximum. This is due to interaction between the individual models and the maximum could, for instance, lie between two Gaussians. Therefore, this is usually not the arg max. In addition, we show the expectation value on the curve (the average ${\bf y}$) by a * symbol and also note that it is not maximal.

We will consider the prototypes as seeds and try optimizing the probability from there. Thus, we should converge to the global maximum of probability after investigating all possible attractors. For MGaussians, there are M attractor basins and these usually have non-zero mutual interaction. Thus, assume we are at a current operating point ${\bf y}^{(t-1)}$ (seeded at one of the Gaussian means or prototypes). We wish to find a better ${\bf y}^{t}$ using an iterative approach. Equivalently, we can maximize the logarithm of the difference in probabilities $\Delta lp$ as in Equation 7.34.


 
$\displaystyle \begin{array}{lll}
\Delta lp & = & \log p({\bf y}^t\vert{\bar {\b...
...t;\mu^m,\Omega^m)}
{ G_m {\cal N} ({\bf y}^{(t-1)};\mu^m,\Omega^m)}
\end{array}$     (7.34)

Applying Jensen's inequality yields a bound which is very similar to our previous Q-function in the EM algorithm. Effectively, we propose solving arg maximization using an EM framework with multiple seeds (a total of M seeds for M Gaussians). In fact, the application of Jensen's inequality above is the E-step. The M-step is obtained by taking derivatives with respect to ${\bf y}^{t}$ of the bound and setting them to 0. We obtain the update equation for the ${\bf y}$ as in Equation 7.35. This E and the M steps are iterated and ${\bf y}$ monotonically converges to a local maximum. For each of the 4 seeds, we show the convergence on the mixture model in Figure 7.13(a) and the monotonic increase in Figure 7.13(b). Given that only a handful of iterations are needed and only M Gaussians are being used, the complete arg maximization process we implemented requires only several milliseconds to find the best ${\bf y}$ occupying a vector space of dimensionality greater than 100.


 
$\displaystyle \begin{array}{lll}
{\bf y}^t & := & \left (
\sum_{m=1}^M
G_m {\ca...
...} ({\bf y}^{(t-1)};\mu^m,\Omega^m) {\Omega^m}^{(-1)}
\right ) ^{-1}
\end{array}$     (7.35)


  
Figure 7.13: Arg Maximization
\begin{figure}\center
\begin{tabular}[b]{cc}
\epsfxsize=2.4in
\epsfbox{argmax...
...psfxsize=2.4in
\epsfbox{argmax3.ps} \\
(a) & (b)
\end{tabular}
\end{figure}

If time is a critical factor, we can use standard techniques to compute a mere expectation of the mixture model which is given in Equation 7.36. This solution, often has lower probability than the arg max.


 
$\displaystyle \begin{array}{lll}
{\hat {\bf y}} & := & \frac{\sum_{m=1}^M G_m {...
...\Omega^m) \mu^m}
{\sum_{m=1}^M G_m {\cal N} (\mu^m;\mu^m,\Omega^m)}
\end{array}$     (7.36)


next up previous contents
Next: Standardized Database Performance Up: Applying the Model Previous: Applying the Model
Tony Jebara
1999-09-15