我正在尝试在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,我检查拼写是否正确。我应该怎么做才能导入它?
答案 0 :(得分:1)
更新scikit-learn to 0.18,在previous versions中它被称为VBGMM
(变分贝叶斯高斯混合模型) - 实际上它是一个有点不同的方法,但它是你在以前最接近的方法版本