-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question about GMM::probability_of #3
Comments
No. Line 244 in 5b6940d
|
I think the probabilities of the different gaussians are additive (see at wikipedia). Lines 215 to 220 in 5b6940d
where it is done correctly. Because the probabilities are summed up before the log operation. There should be no difference to GMM::probability_of except of the log operation in the end. |
A Gaussian mixture model is a weighted sum of Gaussians. I would say |
fast-gmm/src/gmm.cc
Lines 232 to 235 in 5b6940d
It should be prob += weights[i] * gaussians[i]->probability_of(x), shouldn't it be?
The text was updated successfully, but these errors were encountered: