AttributeError: 'KMeans' object has no attribute 'labels_'
时间: 2023-08-14 21:06:21 浏览: 303
attribute详细介绍
你遇到的报错是因为在使用KMeans()函数时,没有执行fit()方法,导致没有生成labels_属性。在你提供的代码片段中,通过迭代确定k值的过程中,你使用了KMeans()函数并调用了fit()方法,所以不会出现AttributeError: 'KMeans' object has no attribute 'labels_'这个错误。请确保在调用KMeans()函数后,需要执行fit()方法来拟合数据。这样就可以正确地获取labels_属性。
阅读全文