LinkedIn analytics tracking pixel for AIDOLS AI consulting website performance measurement
Fundamentals

Unsupervised Learning

Unsupervised learning is a machine-learning paradigm where a model is given only inputs — no labels — and must discover structure in the data: clusters, density, low-dimensional representations, or anomalies.

Full definition

Common methods include k-means and DBSCAN clustering, principal component analysis (PCA) for dimensionality reduction, and autoencoders for representation learning. Most pretraining of LLMs is technically self-supervised (next-token prediction creates its own labels from the text), which sits between classical unsupervised and supervised learning.

Why it matters

Unsupervised learning is where labeled data is scarce or impossible — anomaly detection in cybersecurity, customer segmentation, exploring a new dataset before deciding what to predict. It is also a critical preprocessing step that often improves downstream supervised models.

Example

A cybersecurity team uses unsupervised anomaly detection on network traffic to flag connections that deviate from learned baseline behaviour, surfacing previously unknown attack patterns without needing labeled examples of every threat.

Source & further reading

Primary source: Hastie, Tibshirani, Friedman — "The Elements of Statistical Learning" (Springer, Chapter 14) (2009).

Citation policy: this entry is part of the AIDOLS AI Implementation Glossary and may be quoted for research, journalism, and education with attribution to aidolsgroup.com/de/glossary/unsupervised-learning/.