1 Answers

You can try using the following import statement instead:

from sklearn.mixture import GaussianMixture as gmm

This one should work with newer version of scikit-learn.

Related