AttributeError: 'KMeansModel' object has no attribute '_jdf'
时间: 2023-06-22 18:30:59 浏览: 177
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这个错误通常发生在使用 PySpark 的版本不兼容时。可以尝试升级或降级 PySpark 版本,或者在代码中指定正确的 PySpark 版本。
另外,如果你在使用 KMeans 模型时出现了这个错误,可能是因为你没有正确地导入 KMeans 模型。正确的导入方式应该是:
```python
from pyspark.ml.clustering import KMeansModel
```
如果你的代码中没有导入 KMeansModel,可以尝试添加这个导入语句,然后重新运行程序。
阅读全文