Unsupervised learning: Unsupervised learning is machine learning on data with no correct answers attached. The model finds structure on its own, grouping similar customers, spotting unusual transactions, or clustering tickets by topic; a human then decides what the groups mean.
Labeled data is expensive and often unavailable, so a whole branch of machine learning works without it. Give an unsupervised model your customer records and it will sort them into clusters of similar behavior. Give it a year of server logs and it will flag the hours that look nothing like the rest. It does not know what a "high-value customer" or an "outage" is; it only knows what is similar and what is unusual.
The common techniques have plain-English jobs. Clustering groups things by similarity. Dimensionality reduction squeezes hundreds of columns down to a few that carry most of the signal, often so the data can be charted. Anomaly detection isolates the outliers. Association mining finds items that show up together, the classic "people who bought this also bought" pattern.
The catch is interpretation. The model hands you cluster 3; you have to look inside and decide it is "small accounts that order weekly and never call support". Clusters can also be artifacts of how the data was formatted rather than anything real. Treat unsupervised output as a set of hypotheses to check with someone who knows the business, not as findings.
Example at work
A marketing analyst runs clustering on two years of purchase history and gets five customer groups. Three match segments the team already used. One is a surprise: customers who buy only during promotions and return a large share of what they order. That group gets excluded from the next discount campaign, which improves margin without hurting overall sales.
Why it matters
Unsupervised learning is how you find patterns you did not know to look for, which is often more valuable than confirming what you expected. Knowing that its output needs human interpretation keeps you from mistaking a cluster for a conclusion.
Related terms
- Supervised learningSupervised learning trains a machine learning model on examples that already carry the correct answer, so it can predict the answer for new cases. It is behind spam filters, credit scoring, demand forecasts, and most business AI that classifies or predicts.
- Machine learning (ML)Machine learning is the branch of AI in which software learns patterns from examples instead of following rules a programmer wrote by hand. Nearly every modern AI tool, including chat assistants, is built on it.
- Anomaly detectionAnomaly detection is the automated flagging of data points or events that do not fit the normal pattern: a purchase in an unusual place, an expense claim twice the usual size. It powers fraud alerts, security monitoring, and equipment warnings.
- EmbeddingAn embedding is a list of numbers that represents the meaning of a piece of text, an image, or other content, so that items with similar meaning end up with similar numbers. Embeddings are what let AI systems search by meaning instead of exact words.
- Recommendation systemA recommendation system is software that predicts what a person is most likely to want next, such as a product, an article, or a video, based on past behavior and the behavior of similar people. It drives feeds and "you might also like" boxes across the web.