Types of Unsupervised Learning
Unsupervised learning is classified into two categories of algorithms:
- Clustering: A clustering problem is where you want to discover the inherent groupings in the data, such as grouping customers by purchasing behavior. more…
- Association: An association rule learning problem is where you want to discover rules that describe large portions of your data, such as people that buy X also tend to buy Y. more…
- Dimensionality Reduction: Dimensionality reduction is a technique used in machine learning and statistics to reduce the number of features or variables in a dataset. The main goal is to simplify the dataset by retaining its essential information while eliminating irrelevant or redundant features. more..