Supervised ML
Supervised ML
COURSE INSTRUCTOR:
Dr.R.UMamaheswari
Assoc.prof & HoD ECM
In supervised learning, the training data provided to the machines work as the
supervisor that teaches the machines to predict the output correctly. It applies the
same concept as a student learns in the supervision of the teacher.
In supervised learning, models are trained using labelled dataset, where the
model learns about each type of data. Once the training process is completed, the
model is tested on the basis of test data (a subset of the training set), and then it
predicts the output.
If the given shape has four sides, and all the sides are equal, then it will be
labelled as a Square.
If the given shape has three sides, then it will be labelled as a triangle.
If the given shape has six equal sides then it will be labelled as hexagon.
Now, after training, we test our model using the test set, and the task of the
model is to identify the shape.
The machine is already trained on all types of shapes, and when it finds a new
shape, it classifies the shape on the bases of a number of sides, and predicts the
output.
Department of Electronics and Computer Engineering Slide No. 16
Topic:Supervised Machine Learning Course: Machine Learning
2. Classification:
Classification algorithms are used when the output variable is categorical, which
means there are two classes such as Yes-No, Male-Female, True-false, etc.
Spam Filtering,
Random Forest
Decision Trees
Logistic Regression
With the help of supervised learning, the model can predict the output on the
basis of prior experiences.
In supervised learning, we can have an exact idea about the classes of objects.
Supervised learning models are not suitable for handling the complex tasks.
Supervised learning cannot predict the correct output if the test data is different
from the training dataset.
In supervised learning, we need enough knowledge about the classes of object.
Thank You