Clustering by fast search and find of density peaks总结

Posted yc..

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Clustering by fast search and find of density peaks总结相关的知识,希望对你有一定的参考价值。

Clustering by fast search and find of density peaks 是发表在science14年上的对kmeans的改进版本,其思想如下:
在聚类中,类中心往往是密度较大,而且离其他类中心较远的点。先通过找到类中心,再将其他点归并到最近的类中心即可,不需要通过多次迭代来寻找聚类中心。
1.在程序中需要指定距离r,或者以某个r为半径能够圈住样本点的1%-2% 的r作为半径。
2.以r为半径求每一个出样本点的密度rho,然后对密度进行排序。
3.排序后对于每个样本点,找出比他密度大的点集中与离它距离最近的点的距离。以此类推计算出所有点与与他最近点的距离。
4.选取密度和距离都大的点作为质心。
5.将剩余点按照距离最近归入各个质心所在的类中。

以上是关于Clustering by fast search and find of density peaks总结的主要内容,如果未能解决你的问题,请参考以下文章

一种新型聚类算法(Clustering by fast search and find of density peaksd)

Clustering by fast search and find of desity peaks(基于快速搜索与寻找密度峰值的聚类)

聚类键列必须与 CLUSTERING ORDER BY 指令中的列完全匹配

Clustering by Passing Messages Between Data Points(Brendan J.Frey* and Delbert Dueck)

Clustering by Passing Messages Between Data Points(Brendan J.Frey* and Delbert Dueck)例子

RCNN,Fast RCNN,Faster RCNN 的前生今世: Selective Search