- Machine Learning in Java
- AshishSingh Bhatia Bostjan Kaluza
- 217字
- 2021-06-10 19:29:59
Clustering
Clustering is a technique for grouping similar instances into clusters according to some distance measures. The main idea is to put instances that are similar (that is, close to each other) into the same cluster, while keeping the dissimilar points (that is, the ones further apart from each other) in different clusters. An example of how clusters might look like is shown in the following diagram:
The clustering algorithms follow two fundamentally different approaches. The first is a hierarchical or agglomerative approach that first considers each point as its own cluster, and then iteratively merges the most similar clusters together. It stops when further merging reaches a predefined number of clusters, or if the clusters to be merged are spread over a large region.
The other approach is based on point assignment. First, initial cluster centers (that is, centroids) are estimated, for instance, randomly, and then, each point is assigned to the closest cluster, until all of the points are assigned. The most well known algorithm in this group is k-means clustering.
The k-means clustering either picks initial cluster centers as points that are as far as possible from one another, or (hierarchically) clusters a sample of data and picks a point that is the closest to the center of each of the k-clusters.
- Hands-On Deep Learning with Apache Spark
- Java編程全能詞典
- 網(wǎng)上沖浪
- 工業(yè)機器人技術(shù)及應(yīng)用
- 蕩胸生層云:C語言開發(fā)修行實錄
- 自動控制原理
- Effective DevOps with AWS
- AWS Administration Cookbook
- 基于ARM9的小型機器人制作
- 數(shù)字多媒體技術(shù)基礎(chǔ)
- 貫通Hibernate開發(fā)
- 無人駕駛感知智能
- 中國戰(zhàn)略性新興產(chǎn)業(yè)研究與發(fā)展·數(shù)控系統(tǒng)
- Deep Learning Essentials
- 巧學(xué)活用Linux