Questions tagged [expectation-maximization]

For questions related to the "expectation-maximisation" (EM) algorithm (which is used in several contexts in AI).

For more info, see e.g. https://en.wikipedia.org/wiki/Expectation%E2%80%93maximization_algorithm.

4 questions
5
votes
1 answer

What is expectation-maximization in machine learning?

While studying machine learning algorithms, I often see the term "expectation-maximisation" (or EM), and how it is used to estimate parameters, where the model depends on unobserved latent variables. The way I see it, it is like a…
Guest2000
  • 305
  • 1
  • 4
1
vote
0 answers

Is VAE the same as the E-step of the EM algorithm?

EM(Expectation Maximum) Target: maximize $p_\theta(x)$ $ p_\theta(x)=\frac{p_\theta(x, z)}{p_\theta(z \mid x)} \\\\$ Take log on both sides: $ \log p_\theta(x)=\log p_\theta(x, z)-\log p_\theta(z \mid x) \\\\$ Introduce distribution $q_\phi(z)$: $…
1
vote
1 answer

Why is the E step in expectation maximisation algorithm called so?

The E step on the EM algorithm asks us to set the value of the variational lower bound to be equal to the posterior probability of the latent variable, given the data points and parameters. Clearly we are not taking any expectations here, then why…
0
votes
0 answers

How can the expectation-maximization improve the classification?

I am learning the expectation-maximization algorithm from the article Semi-Supervised Text Classification Using EM. The algorithm is very interesting. However, the algorithm looks like doing a circular inference here. I don't know am I…