Please enable JavaScript.
Coggle requires JavaScript to display documents.
Machine Learning - Coggle Diagram
Machine Learning
-
When
classification
Is this credit card transaction fraudulent or not? Is this email spam or not? Machine learning is a great tool when you need to divide objects (for example clients or products) into two or more pre-defined groups.
clustering
ML discovers patterns in chaos. It enables those who use it to find parallels between data points and divide objects into similar groups (clusters). What is important, there is no need to define the groups in advance
regresiion
It's like future prediction. On the basis of an input from a dataset (usually historical data plus other factors), ML estimates the most likely numeric value of a particular quantity. such as stock or real estate prices, consumer behaviour,...
dimensionality reduction
In an ocean of information, ML can choose which data are the most significant and how they can be summarised. In practice, it is applied in such fields as photo processing and text analysis.
What?
is an evolving branch of computational algorithms that are designed to emulate human intelligence by learning from the surrounding environment
Why
produce models that can analyze bigger, more complex data and deliver faster, more accurate results
-
-
How
Data
-
-
Supervised
Supervised Learning
-
-
-
When
Classification
A classification problem is when the output variable is a category such as "Apple" or "Orange" or "disease" and "no disease"
-
-
-
-
-
-
Regression
A regression problem is when the output variable is a real value, such as “dollars” or “weight”.
-
-
-
Unsupervised
Unsupervised Learning
-
-
Why
-
There is lesser complexity compared to the supervised learning task. Here, no one is required to interpret the associated labels and hence it holds lesser complexities.
When
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.
-
Clustering
A clustering problem is where you want to discover the inherent groupings in the data, such as grouping customers by purchasing behavior
-
-
-
Dimensionality reduction
is a learning technique used when the number of features (or dimensions) in a given dataset is too high. It reduces the number of data inputs to a manageable size while also preserving the data integrity
-
Singular Value Decomposition (SVD), etc