Tasks · Foundational · Beginner
Clustering
Grouping records so that items inside a group are more similar to each other than to items in other groups.
What Clustering is
Clustering imposes no predefined categories. The algorithm proposes groupings, and a human decides whether those groupings mean anything useful.
How it works
k-means iteratively assigns points to the nearest centroid and recomputes centroids; hierarchical methods build a tree of merges; DBSCAN grows clusters from dense regions and leaves outliers unassigned. Distance metric and feature scaling change results dramatically.
Why it matters
It is the default first move for making sense of an unfamiliar dataset, and it powers customer segmentation work across marketing and product analytics.
Common uses
- →Customer and behavioural segmentation
- →Document topic grouping
- →Image colour quantisation
- →De-duplication
Strengths
- ✓No labels needed
- ✓Fast on moderate data
Watch for
- ✓Number of clusters is a judgement call
- ✓Results shift with scaling choices
Continue exploring
More in this collection
Browse all AI Concepts