聚类方法一览(参考 scikit-learning 官网聚类章节):
聚类方法 | 可伸缩性 | 优点 | 缺点 | 应用示例 |
---|---|---|---|---|
K-Means | Very large n_samples ,medium n_clusters with MiniBatch code |
1. |
| |
1.
|
| Spectral clustering
谱聚类 | Medium n_samples
,
small n_clusters
|
1. 处理稀疏数据有效
1. 对数据进行降维,处理高维数据复杂度低
|
1. 适用于少类别聚类,否则将降维程度不够而影响效果
1. 聚类效果依赖于相似矩阵
|
1. 图像分割
1. 图像区域划分
|