Algorithm of Neural Network M4
Algorithm of Neural Network M4
Neural
Networks
M4-CONTI
Contents
• Search engines
• E-Commerce
• Weather forecasting
• Image processing
• Robotics
• Social Network
Support Vector Machine or SVM
• Example: Suppose we see a strange cat that also has some features of
dogs, so if we want a model that can accurately identify whether it is a cat
or dog, so such a model can be created by using the SVM algorithm.
• We will first train our model with lots of images of cats and dogs so that it
can learn about different features of cats and dogs, and then we test it with
this strange creature.
• So as support vector creates a decision boundary between these two data
(cat and dog) and choose extreme cases (support vectors), it will see the
extreme case of cat and dog. On the basis of the support vectors, it will
classify it as a cat. Consider the below diagram:
Example
Applications of SVM
• Linear SVM: Linear SVM is used for linearly separable data, which
means if a dataset can be classified into two classes by using a single
straight line, then such data is termed as linearly separable data, and
classifier used is called as Linear SVM classifier.
• Non-linear SVM: Non-Linear SVM is used for non-linearly separated
data, which means if a dataset cannot be classified by using a straight
line, then such data is termed as non-linear data and classifier used is
called as Non-linear SVM classifier
SVM based Binary classification
• LMS algorithm uses the estimates of the gradient vector from the
available data. LMS incorporates an iterative procedure that makes
successive corrections to the weight vector in the direction of the
negative of the gradient vector which eventually leads to the
minimum mean square error.
• LMS algorithm estimates the cost
Steepest
Descent
Algorithm
Advantages of LMS