0

I am implementing expectation maximization (EM) in C++ to estimate the parameter of Gaussian mixture model.

The EM is very slow to converge - is there a technique to converge log likelihood in a fast way?

Alex Riley
  • 169,130
  • 45
  • 262
  • 238
kahsay kalayu
  • 309
  • 5
  • 16

1 Answers1

0

The Armadillo C++ library has a multi-threaded implementation of Expectation Maximization (EM) for Gaussian Mixure Models (GMM). See the gmm_diag class for more information.

mtall
  • 3,574
  • 15
  • 23