Difference between revisions of "Expectation Maximization"

From Cohen Courses
Jump to navigationJump to search
Line 5: Line 5:
 
[[Dempster et al., 1997]] formalize the EM algorithm and provide a proof of convergence. The conversion properties are discussed in [[McLachlan and Krishnan, 1997]] in detail.  
 
[[Dempster et al., 1997]] formalize the EM algorithm and provide a proof of convergence. The conversion properties are discussed in [[McLachlan and Krishnan, 1997]] in detail.  
  
An alternative explanation to EM gives the intuition behind alternating between variables in terms of lower bound maximization ([[Neal and Hinton, 1998]], and [[Minka, 1998]]). In this formulation, the E-step is regarded as determining a lower bound for the posterior distribution, and the M-step as optimizing this bound, resulting in a better estimate for the model parameters.  
+
An alternative explanation to EM gives the intuition behind alternating between variables in terms of lower bound maximization ([[Neal and Hinton, 1998]], and [[Minka, 1998]]). In this formulation, the E-step is regarded as determining a lower bound for the posterior distribution, and the M-step as optimizing this bound, resulting in a better estimate for the model parameters.
 +
 
 +
EM has been shown to be a special case of [[AlternatingMinimization | Alternating Minimization]].
  
 
== Algorithm ==
 
== Algorithm ==

Revision as of 16:50, 26 September 2011

Expectation Maximization (EM) is an iterative method for finding the maximum likelihood estimates of the unknown parameters, , of a probabilistic model with latent variables, , given observed data, . The estimates are found by iteratively alternating between two steps: (1) the Expectation (E)-Step, in which the posterior distribution of the latent variables is calculated, using a conditional expectation given the data, and the current estimate of the model parameters, and (2) the Maximization (M)-Step, in which the model parameters are re-estimated using the distribution over .

Literature

Dempster et al., 1997 formalize the EM algorithm and provide a proof of convergence. The conversion properties are discussed in McLachlan and Krishnan, 1997 in detail.

An alternative explanation to EM gives the intuition behind alternating between variables in terms of lower bound maximization (Neal and Hinton, 1998, and Minka, 1998). In this formulation, the E-step is regarded as determining a lower bound for the posterior distribution, and the M-step as optimizing this bound, resulting in a better estimate for the model parameters.

EM has been shown to be a special case of Alternating Minimization.

Algorithm

Let be a set of observations resulting for a probabilistic model with unknown parameters, , and hidden variables . We wish to recover a set of parameters, that will maximize the likelihood function:

We assume that directly optimizing is difficult and that considering the full data is easier.

The algorithm will maximize the probability of the parameters given the data , marginalizing over the latent variables . This is done in two steps:

  1. E-Step: Determine the conditional expectation
  2. M-Step: Maximize this with respect to


Relevant Papers