SUPERVISED LEARNING = SUPERVISED + LEARNING
The word SUPERVISED can be seen as :
SUPERVISED = (In the supervision of) / (In the presence of a observer/supervisor)
The word LEARNING can be seen as :
LEARNING = (Machine acquire knowledge or learn using data)
So, we can define supervised learning as ” Machine acquire knowledge in the presence of a supervisor (data whose answer is already known i.e. labeled data)”.
Supervised Learning is the sub branch of Machine Learning in which we train our Machine using labeled data.
https://en.wikipedia.org/wiki/Supervised_learning
Some supervised learning use cases such as:
- Sentiment Analysis
- Customer segmentation
- Gene classification
Supervised learning further divided into 2 category
- Classification Techniques
- Regression
CLASSIFICATION TECHNIQUE:
It is a supervised learning technique in which the output is labeled i.e. output is as category such as ‘Male’ or ‘Female’, ‘PROFIT’ OR ‘LOSS’.
Classification is a problem that is used to predict which class a data point is part of which is usually a discrete value.
Example :
- Determining whether or not someone will be a defaulter of the loan.
- Decide email is span or not?
- Decide whether comment is positive or negative.
Classification is again divided into three other categories
- Binary classification
- Multi-class/Multinomial classification
- Multi-label classification.
REGRESSION:
It is a supervised learning technique in which the output is continuous value. it predicts a single output value using training data.
Example : Predicting the house price from continuous data, based on different features like size of a house, locality, floor, furnished or not, etc.
CLASSIFICATION ALGORITHMS:
- Linear regression
- Logistic regression
- K-nearest neighbors
- Artificial neural networks (ANN)
- Neural Networks
- Decision trees
- Bayesian logic
- Support vector machines (SVM)
- Random forests
We will see each algorithm in details in subsequent articles …
An Introduction To Machine Learning
Artificial Intelligence An Introduction
it is good read.