ImportError:无法导入名称BayesianGaussianMixture

时间:2016-10-11 21:53:26

标签: python machine-learning scikit-learn cluster-analysis

我正在尝试在sklearn中使用Batesian模型,但在尝试时出现以下错误。

>>> from sklearn.mixture import BayesianGaussianMixture
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: cannot import name BayesianGaussianMixture

我在python 2.7.11。我看到documentation,我检查拼写是否正确。我应该怎么做才能导入它?

1 个答案:

答案 0 :(得分:1)

更新scikit-learn to 0.18,在previous versions中它被称为VBGMM(变分贝叶斯高斯混合模型) - 实际上它是一个有点不同的方法,但它是你在以前最接近的方法版本