1 2MachineLearningParadigm
1 2MachineLearningParadigm
A1. Supervised learning, Unsupervised learning, semi-supervised learning, and reinforcement learning.
A2. Machine Learning based on a labelled training dataset. Based on its training data, the program can make accurate decisions when given new data. It is comparable / analogous
to learning with a teacher. Classification and regression are variants of supervised learning. Example: you receive bunch of flowers with labels and your program can identify the
species after having been trained on a labelled dataset.
A3. Unsupervised learning occurs when there is no teaching information to train on, or when your program automatically finds patterns and relationships in the data without using
any form of labeling. Clustering and association learning belong to the unsupervised learning paradigm. Example: you receive flowers without labeling so the algorithm has to
group like flowers according to similarity.
A4. Classification: Classifying data according to pre-defined categories
Clustering: Partitioning data into groups
▪ A paradigm of machine learning where the given dataset contains both inputs
(independent variables, x) and desired outputs (dependent variable, y ).
▪ The objective of supervised learning is to develop an association model that
relates the inputs to the outputs, and can predict the output for future inputs.