本文介绍了Python的k-means算法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我要寻找Python实现的k-means算法结合实例集群和缓存我的坐标数据库。
I am looking for Python implementation of k-means algorithm with examples to cluster and cache my database of coordinates.
推荐答案
SciPy的的集群实施工作,他们也有一个 K-均值一>的实施。
Scipy's clustering implementations work well, and they include a k-means implementation.
还有 SciPy的集群,这确实会凝聚的聚集;的部份有一个你不需要决定簇提前的数量优势。
There's also scipy-cluster, which does agglomerative clustering; ths has the advantage that you don't need to decide on the number of clusters ahead of time.
这篇关于Python的k-means算法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!