abhijeet3922 / Speaker-identification-using-GMMs

It uses GMM to train a speaker identification model. The training and testing has been done on subset (34 speakers) from VoxForge data corpus.
https://appliedmachinelearning.wordpress.com/2017/11/14/spoken-speaker-identification-based-on-gaussian-mixture-models-python-implementation/
55 stars 37 forks source link

GMM issue #3

Open akshat9425 opened 6 years ago

akshat9425 commented 6 years ago

I installed sklearn but found that inside mixture folder of sklearn no GMM file exists but there is file named gaussian_mixture so i replace below lines of code

from => from sklearn.mixture import GMM to => from sklearn.mixture import gaussian_mixture as GMM

further I got this error: TypeError: 'module' object is not callable please tell me what to do

Thanks in advance waiting for your valuable reply

Jhenriquee commented 5 years ago

I think what you want is:

from sklearn.mixture import GaussianMixture as GMM