如何在 K-Means 中找到每个簇的新均值?
我在 K 均值算法中为每个簇都有一个变量列表。如何找到每个集群的新均值?
I have a list variables for each cluster at my K-means algorithm. How can I find the new means of each cluster's?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
K-means 将每个元素分配到一个簇。这些是您列表中的元素吗?如果是这样,则计算每个列表的平均值。
K-means assigns each element to a cluster. Are those the elements in your lists? If so, then calculate the mean for each of those lists.