SlideShare a Scribd company logo
1 of 21
Download to read offline
SVM – Soft margin hyperplanes
Sarith Divakar M
LBS College of Engineering, Kasaragod
sarith@lbscek.ac.in
RECAP OF SESSION 1
2
Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
Width of the street
𝑊𝑖𝑑𝑡ℎ = (𝑥+ - 𝑥− ) .
𝑤
||𝑤||
For +ve samples 𝑦𝑖=1 and –ve samples 𝑦𝑖 = -1
𝑦𝑖(𝑤. 𝑥𝑖 + b) −1 = 0 3
1.(𝑤. 𝑥𝑖 + b) −1 = 0
𝑤. 𝑥𝑖 = 1-b
i
-1.(𝑤. 𝑥𝑖 + b) −1 = 0
𝑤. 𝑥𝑖 = -1-b
ii
𝑊𝑖𝑑𝑡ℎ = (1-b – (-1-b)) .
1
||𝑤||
𝑥+
𝑥−
𝑥+ - 𝑥−
𝑊𝑖𝑑𝑡ℎ =
2
||𝑤||
Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
3
Maximize Width of the street
𝑀𝑎𝑥𝑖𝑚𝑖𝑧𝑒 =
2
||𝑤||
𝑥+
𝑥−
𝑥+ + 𝑥−
𝑀𝑎𝑥𝑖𝑚𝑖𝑧𝑒 =
1
||𝑤||
𝑀𝑖𝑛𝑖𝑚𝑖𝑧𝑒 = ||𝑤||
𝑀𝑖𝑛𝑖𝑚𝑖𝑧𝑒 =
1
2
||𝑤||
2
4
𝑦𝑖(𝑤. 𝑥𝑖 + b) −1 = 0
Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
4
Optimization using Lagrange multipliers
Expression: 𝑀𝑖𝑛𝑖𝑚𝑖𝑧𝑒 =
1
2
||𝑤||
2
Constraint: 𝑦𝑖(𝑤. 𝑥𝑖 + b) −1 = 0
Primal problem:
L=
1
2
||𝑤||
2
- 𝛼𝑖 [𝑦𝑖(𝑤. 𝑥𝑖 + b) − 1]
𝜕𝐿
𝜕𝑤
= 𝑤- 𝛼𝑖 𝑦𝑖 𝑥𝑖 = 0
𝑤 = 𝛼𝑖 𝑦𝑖 𝑥𝑖 6
𝜕𝐿
𝜕𝑏
= - 𝛼𝑖 𝑦𝑖 = 0
𝛼𝑖 𝑦𝑖 = 0 7
5
Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
5
𝑥+
𝑥−
𝑥+ + 𝑥−
Optimization using Lagrange multipliers
7
L=
1
2
||𝑤||
2
- 𝛼𝑖 [𝑦𝑖(𝑤. 𝑥𝑖 + b) − 1]
𝑤 = 𝛼𝑖 𝑦𝑖 𝑥𝑖
5
6
𝛼𝑖 𝑦𝑖 = 0
L=
1
2
( 𝛼𝑖 𝑦𝑖 𝑥𝑖 ).( 𝛼𝑗 𝑦𝑗 𝑥𝑗 )- 𝛼𝑖 [𝑦𝑖( 𝛼𝑗 𝑦𝑗 𝑥𝑗 . 𝑥𝑖 + b) − 1]
L=
1
2
( 𝛼𝑖 𝑦𝑖 𝑥𝑖 ).( 𝛼𝑗 𝑦𝑗 𝑥𝑗 )- ( 𝛼𝑖 𝑦𝑖 𝑥𝑖). ( 𝛼𝑗 𝑦𝑗 𝑥𝑗) − 𝛼𝑖 𝑦𝑖 b + 𝛼𝑖
= 0
L= 𝛼𝑖
+
1
2
( 𝛼𝑖 𝑦𝑖 𝑥𝑖 ).( 𝛼𝑗 𝑦𝑗 𝑥𝑗 )- ( 𝛼𝑖 𝑦𝑖 𝑥𝑖). ( 𝛼𝑗 𝑦𝑗 𝑥𝑗)
L= 𝛼𝑖 −
1
2
𝛼𝑖 𝑦𝑖 𝛼𝑗 𝑦𝑗 (𝑥𝑖. 𝑥𝑗)
Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
6
SVM Classifier
𝜙 𝛼 = 𝛼
𝑖
−
1
2
𝛼𝑖 𝑦𝑖 𝛼𝑗 𝑦𝑗 (𝑥𝑖. 𝑥𝑗)
Compute 𝑤 and b
Dual Problem: Find vector 𝛼 which maximizes
Subject to
𝛼𝑖 𝑦𝑖 = 0
SVM Classifier Function:
𝑏 =
1
2
(𝑚𝑖𝑛𝑖:𝑦 𝑖=+1(𝑤. 𝑥𝑖) + 𝑚𝑎𝑥𝑖:𝑦 𝑖=−1(𝑤. 𝑥𝑖))
𝑤 = 𝛼𝑖 𝑦𝑖 𝑥𝑖
f( 𝑥) =(𝑤. 𝑥) - b
Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
7
𝛼𝑖 ≥ 0
8
SVM Classifier Function: f( 𝑥) =(𝑤. 𝑥) - b
Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
= −
1
2
, −
1
2
. (𝑥1, 𝑥2) +
5
2
= −
1
2
𝑥1 −
1
2
𝑥2 +
5
2
= −
1
2
[𝑥1 + 𝑥2−5]
Equation of maximal margin line
f( 𝑥) = 0 𝑥1 + 𝑥2 = 5
0 1 2 3 4 5 6
1
2
3
4
5
6
Sampl
e
F1 F2 Class
1 2 1 +1
2 4 3 -1
Soft margin hyperplanes
Department of Computer Science and Engineering, LBS College
of Engineering, Kasaragod
9
10
Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
Soft margin hyperplanes
11
Outside the margin or on the margin
Inside the margin correctly classified
Inside the margin misclassified
Soft Error 𝐶 𝜉𝑖
𝜉𝑖 = 0
0 < 𝜉𝑖 < 1
𝜉𝑖 > 1
Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
𝑤
𝑢
0 < 𝜉𝑖 < 1
𝜉𝑖 > 1
𝜉𝑖 = 0
𝜉𝑖 = 0
Optimization using Lagrange multipliers
12
Primal problem:
Expression: 𝑀𝑖𝑛𝑖𝑚𝑖𝑧𝑒 =
1
2
||𝑤||
2
+ C 𝜉𝑖
Constraint: 𝑦𝑖(𝑤. 𝑥𝑖 + b)≥ 1 − 𝜉𝑖
𝜉𝑖 ≥ 0
L=
1
2
||𝑤||
2
+ C 𝜉𝑖 - 𝛼𝑖 𝑦𝑖(𝑤. 𝑥𝑖 + b) − 1 + 𝜉𝑖 − 𝜇𝑖 𝜉𝑖
𝛼𝑖 ≥ 0, 𝜇𝑖 ≥ 0
Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
𝑤
𝑢
0 < 𝜉𝑖 < 1
𝜉𝑖 > 1
𝜉𝑖 = 0
𝜉𝑖 = 0
13
𝜕𝐿
𝜕𝑤
= 𝑤- 𝛼𝑖 𝑦𝑖 𝑥𝑖 = 0 𝑤 = 𝛼𝑖 𝑦𝑖 𝑥𝑖
𝜕𝐿
𝜕𝑏
= - 𝛼𝑖 𝑦𝑖 = 0 𝛼𝑖 𝑦𝑖 = 0
𝜕𝐿
𝜕𝜉 𝑖
= C - 𝛼𝑖 - 𝜇𝑖= 0 𝜇𝑖= C -𝛼𝑖 𝜇𝑖≥ 0 ⇒ 𝛼𝑖 ≤ 𝐶
L=
1
2
||𝑤||
2
+ C 𝜉𝑖 - 𝛼𝑖 𝑦𝑖(𝑤. 𝑥𝑖 + b) − 1 + 𝜉𝑖 − 𝜇𝑖 𝜉𝑖
Optimization using Lagrange multipliers
Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
Optimization using Lagrange multipliers
L=
1
2
( 𝛼𝑖 𝑦𝑖 𝑥𝑖 ).( 𝛼𝑗 𝑦𝑗 𝑥𝑗 ) + C 𝜉𝑖 − 𝛼𝑖 𝑦𝑖( 𝛼𝑗 𝑦𝑗 𝑥𝑗 . 𝑥𝑖 + b) − 1 + 𝜉𝑖 - 𝐶𝜉𝑖 + 𝛼𝑖 𝜉𝑖
L=
1
2
( 𝛼𝑖 𝑦𝑖 𝑥𝑖 ).( 𝛼𝑗 𝑦𝑗 𝑥𝑗 ) + C 𝜉𝑖- ( 𝛼𝑖 𝑦𝑖 𝑥𝑖). ( 𝛼𝑗 𝑦𝑗 𝑥𝑗) − 𝛼𝑖 𝑦𝑖 b + 𝛼𝑖
− 𝛼𝑖 𝜉𝑖 −C 𝜉𝑖 + 𝛼𝑖 𝜉𝑖
= 0
L= 𝛼𝑖
+
1
2
( 𝛼𝑖 𝑦𝑖 𝑥𝑖 ).( 𝛼𝑗 𝑦𝑗 𝑥𝑗 )- ( 𝛼𝑖 𝑦𝑖 𝑥𝑖). ( 𝛼𝑗 𝑦𝑗 𝑥𝑗)
L= 𝛼𝑖
−
1
2
𝛼𝑖 𝑦𝑖 𝛼𝑗 𝑦𝑗 (𝑥𝑖. 𝑥𝑗)
Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
14
L=
1
2
||𝑤||
2
+ C 𝜉𝑖 - 𝛼𝑖 𝑦𝑖(𝑤. 𝑥𝑖 + b) − 1 + 𝜉𝑖 − 𝜇𝑖 𝜉𝑖
𝑤 = 𝛼𝑖 𝑦𝑖 𝑥𝑖 𝛼𝑖 𝑦𝑖 = 0 𝜇𝑖= C -𝛼𝑖
SVM Soft Margin Classifier
𝜙 𝛼 = 𝛼
𝑖
−
1
2
𝛼𝑖 𝑦𝑖 𝛼𝑗 𝑦𝑗 (𝑥𝑖. 𝑥𝑗)
Compute 𝑤 and b
Dual Problem: Find vector 𝛼 which maximizes
Subject to
𝛼𝑖 𝑦𝑖 = 0
SVM Classifier Function:
𝑏 =
1
2
(𝑚𝑖𝑛𝑖:𝑦 𝑖=+1(𝑤. 𝑥𝑖) + 𝑚𝑎𝑥𝑖:𝑦 𝑖=−1(𝑤. 𝑥𝑖))
𝑤 = 𝛼𝑖 𝑦𝑖 𝑥𝑖
f( 𝑥) =(𝑤. 𝑥) - b
Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
15
0 ≤ 𝛼𝑖 ≤ 𝐶
Hyperparamter Tuning
16
Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
C=1
17
Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
C=2000
18
Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
C=78
19
Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
Hyperparameter Tuning
Parameter Range Step Length
C [20, 211] 21
20
Parameter Cherkassky et. al. [11]
C max( 𝑦 + 3𝜎 , | 𝑦 − 3𝜎|)
Heuristic Methods
Search Space
Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
Reference
1. Sudheep Elayidom, M. Data mining and warehousing, Cengage.
2. V. Vapnik, The Nature of Statistical Learning Theory, Springer, 1995
3. Vapnik, V. Statistical Learning Theory. John Wiley & Sons. Inc., New York, 1998
4. B. Schölkopf and A. J. Smola, Learning with Kernels, MIT Press, Cambridge, MA, 2002
5. Davide, M. and Simon, H. Advances in Kernel Methods, 1999, 226-227.
6. Jaiwei Han, Micheline Kamber, “Data Mining Concepts and Techniques”, Elsevier, 2006.
7. Pang-Ning Tan, Michael Steinbach, “Introduction to Data Mining”, Addison Wesley, 2006.
8. Dunham M H, “Data Mining: Introductory and Advanced Topics”, Pearson Education, New
Delhi, 2003.
9. Mehmed Kantardzic, “Data Mining Concepts, Methods and Algorithms”, John Wiley and Sons,
USA, 2003.
10. Sarith Divakar M, Sudheep Elayidom M, Rajesh R, “An efficient approach for crop yield
forecasting using machine learning techniques based on normalized difference vegetation
index and climatic indices”, JARDCS, Vol. 10, 15-Special Issue, 2018
11. Cherkassky, V. and Ma, Y. Selection of meta-parameters for support vector regression.
International Con-ference on Artificial Neural Networks, 2002, 687-693
Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
21

More Related Content

What's hot

Grds international conference on pure and applied science (6)
Grds international conference on pure and applied science (6)Grds international conference on pure and applied science (6)
Grds international conference on pure and applied science (6)Global R & D Services
 
Ph.D. Thesis : Ranjan JHA : Contributions to the Performance Analysis of Para...
Ph.D. Thesis : Ranjan JHA : Contributions to the Performance Analysis of Para...Ph.D. Thesis : Ranjan JHA : Contributions to the Performance Analysis of Para...
Ph.D. Thesis : Ranjan JHA : Contributions to the Performance Analysis of Para...Dr. Ranjan Jha
 
20180831 riemannian representation learning
20180831 riemannian representation learning20180831 riemannian representation learning
20180831 riemannian representation learningsegwangkim
 
Question 5 Math 1
Question 5 Math 1Question 5 Math 1
Question 5 Math 1M.T.H Group
 
Question 4 Math 1
Question 4 Math 1Question 4 Math 1
Question 4 Math 1M.T.H Group
 
Appendix b 2
Appendix b 2Appendix b 2
Appendix b 2Loc Tran
 
Calculation of the undetermined static reactions for the articulated pl
Calculation of the undetermined static reactions for the articulated plCalculation of the undetermined static reactions for the articulated pl
Calculation of the undetermined static reactions for the articulated plIAEME Publication
 
Shortest path problem
Shortest path problemShortest path problem
Shortest path problemIfra Ilyas
 
Unit 2 assignment converted
Unit 2 assignment convertedUnit 2 assignment converted
Unit 2 assignment convertedNikhil177
 
0580 s11 qp_21
0580 s11 qp_210580 s11 qp_21
0580 s11 qp_21King Ali
 
11 baris dan deret geometri
11 baris dan deret geometri11 baris dan deret geometri
11 baris dan deret geometriEva Nurmalasari
 
Kertas Percubaan Matematik Tambahan Kedah Skema K2
Kertas Percubaan Matematik Tambahan Kedah Skema K2Kertas Percubaan Matematik Tambahan Kedah Skema K2
Kertas Percubaan Matematik Tambahan Kedah Skema K2Tuisyen Geliga
 
0580 s10 qp_23
0580 s10 qp_230580 s10 qp_23
0580 s10 qp_23King Ali
 
6161103 2.9 dot product
6161103 2.9 dot product6161103 2.9 dot product
6161103 2.9 dot productetcenterrbru
 

What's hot (19)

Delta Like Robot
Delta Like RobotDelta Like Robot
Delta Like Robot
 
Grds international conference on pure and applied science (6)
Grds international conference on pure and applied science (6)Grds international conference on pure and applied science (6)
Grds international conference on pure and applied science (6)
 
Kl3418811903
Kl3418811903Kl3418811903
Kl3418811903
 
Ph.D. Thesis : Ranjan JHA : Contributions to the Performance Analysis of Para...
Ph.D. Thesis : Ranjan JHA : Contributions to the Performance Analysis of Para...Ph.D. Thesis : Ranjan JHA : Contributions to the Performance Analysis of Para...
Ph.D. Thesis : Ranjan JHA : Contributions to the Performance Analysis of Para...
 
20180831 riemannian representation learning
20180831 riemannian representation learning20180831 riemannian representation learning
20180831 riemannian representation learning
 
Question 5 Math 1
Question 5 Math 1Question 5 Math 1
Question 5 Math 1
 
Question 4 Math 1
Question 4 Math 1Question 4 Math 1
Question 4 Math 1
 
Appendix b 2
Appendix b 2Appendix b 2
Appendix b 2
 
Calculation of the undetermined static reactions for the articulated pl
Calculation of the undetermined static reactions for the articulated plCalculation of the undetermined static reactions for the articulated pl
Calculation of the undetermined static reactions for the articulated pl
 
Shortest path problem
Shortest path problemShortest path problem
Shortest path problem
 
Unit 2 assignment converted
Unit 2 assignment convertedUnit 2 assignment converted
Unit 2 assignment converted
 
0580 s11 qp_21
0580 s11 qp_210580 s11 qp_21
0580 s11 qp_21
 
Absolute function
Absolute functionAbsolute function
Absolute function
 
11 baris dan deret geometri
11 baris dan deret geometri11 baris dan deret geometri
11 baris dan deret geometri
 
Kertas Percubaan Matematik Tambahan Kedah Skema K2
Kertas Percubaan Matematik Tambahan Kedah Skema K2Kertas Percubaan Matematik Tambahan Kedah Skema K2
Kertas Percubaan Matematik Tambahan Kedah Skema K2
 
0580 s10 qp_23
0580 s10 qp_230580 s10 qp_23
0580 s10 qp_23
 
Appendix b 2
Appendix b 2Appendix b 2
Appendix b 2
 
6161103 2.9 dot product
6161103 2.9 dot product6161103 2.9 dot product
6161103 2.9 dot product
 
On Cubic Graceful Labeling
On Cubic Graceful LabelingOn Cubic Graceful Labeling
On Cubic Graceful Labeling
 

Similar to Svm soft margin hyperplanes

Support Vector Machines
Support Vector MachinesSupport Vector Machines
Support Vector Machinessarith divakar
 
Богдан Павлишенко (Bohdan Pavlyshenko) - "Linear, Machine Learning and Probab...
Богдан Павлишенко (Bohdan Pavlyshenko) - "Linear, Machine Learning and Probab...Богдан Павлишенко (Bohdan Pavlyshenko) - "Linear, Machine Learning and Probab...
Богдан Павлишенко (Bohdan Pavlyshenko) - "Linear, Machine Learning and Probab...Lviv Startup Club
 
A generalized Dai-Liao type CG-method with a new monotone line search for unc...
A generalized Dai-Liao type CG-method with a new monotone line search for unc...A generalized Dai-Liao type CG-method with a new monotone line search for unc...
A generalized Dai-Liao type CG-method with a new monotone line search for unc...TELKOMNIKA JOURNAL
 
An enhanced fletcher-reeves-like conjugate gradient methods for image restora...
An enhanced fletcher-reeves-like conjugate gradient methods for image restora...An enhanced fletcher-reeves-like conjugate gradient methods for image restora...
An enhanced fletcher-reeves-like conjugate gradient methods for image restora...IJECEIAES
 
Radix-3 Algorithm for Realization of Type-II Discrete Sine Transform
Radix-3 Algorithm for Realization of Type-II Discrete Sine TransformRadix-3 Algorithm for Realization of Type-II Discrete Sine Transform
Radix-3 Algorithm for Realization of Type-II Discrete Sine TransformIJERA Editor
 
Radix-3 Algorithm for Realization of Type-II Discrete Sine Transform
Radix-3 Algorithm for Realization of Type-II Discrete Sine TransformRadix-3 Algorithm for Realization of Type-II Discrete Sine Transform
Radix-3 Algorithm for Realization of Type-II Discrete Sine TransformIJERA Editor
 
3STUDY MATERIAL XII(Maths) 2022-23.pdf
3STUDY MATERIAL XII(Maths) 2022-23.pdf3STUDY MATERIAL XII(Maths) 2022-23.pdf
3STUDY MATERIAL XII(Maths) 2022-23.pdfssuser47fc07
 
Active Noise Reduction by the Filtered xLMS Algorithm
Active Noise Reduction by the Filtered xLMS AlgorithmActive Noise Reduction by the Filtered xLMS Algorithm
Active Noise Reduction by the Filtered xLMS AlgorithmNirav Desai
 
A common fixed point theorem for two random operators using random mann itera...
A common fixed point theorem for two random operators using random mann itera...A common fixed point theorem for two random operators using random mann itera...
A common fixed point theorem for two random operators using random mann itera...Alexander Decker
 
Banco de preguntas para el ap
Banco de preguntas para el apBanco de preguntas para el ap
Banco de preguntas para el apMARCELOCHAVEZ23
 
Divyesh_14Me63r02(new)
Divyesh_14Me63r02(new)Divyesh_14Me63r02(new)
Divyesh_14Me63r02(new)Divyesh Mistry
 
Multiple Choice Questions_Successive Differentiation (CALCULUS)
Multiple Choice Questions_Successive Differentiation (CALCULUS)Multiple Choice Questions_Successive Differentiation (CALCULUS)
Multiple Choice Questions_Successive Differentiation (CALCULUS)sanjay gupta
 
Applied mathematics for complex engineering
Applied mathematics for complex engineeringApplied mathematics for complex engineering
Applied mathematics for complex engineeringSahl Buhary
 
Optimisation.pptx
Optimisation.pptxOptimisation.pptx
Optimisation.pptxguru1561
 
Matrix Methods of Structural Analysis
Matrix Methods of Structural AnalysisMatrix Methods of Structural Analysis
Matrix Methods of Structural AnalysisDrASSayyad
 
A practical work of matlab
A practical work of matlabA practical work of matlab
A practical work of matlabSalanSD
 

Similar to Svm soft margin hyperplanes (20)

Support Vector Machines
Support Vector MachinesSupport Vector Machines
Support Vector Machines
 
Mte (1)
Mte (1)Mte (1)
Mte (1)
 
Богдан Павлишенко (Bohdan Pavlyshenko) - "Linear, Machine Learning and Probab...
Богдан Павлишенко (Bohdan Pavlyshenko) - "Linear, Machine Learning and Probab...Богдан Павлишенко (Bohdan Pavlyshenko) - "Linear, Machine Learning and Probab...
Богдан Павлишенко (Bohdan Pavlyshenko) - "Linear, Machine Learning and Probab...
 
A generalized Dai-Liao type CG-method with a new monotone line search for unc...
A generalized Dai-Liao type CG-method with a new monotone line search for unc...A generalized Dai-Liao type CG-method with a new monotone line search for unc...
A generalized Dai-Liao type CG-method with a new monotone line search for unc...
 
An enhanced fletcher-reeves-like conjugate gradient methods for image restora...
An enhanced fletcher-reeves-like conjugate gradient methods for image restora...An enhanced fletcher-reeves-like conjugate gradient methods for image restora...
An enhanced fletcher-reeves-like conjugate gradient methods for image restora...
 
Radix-3 Algorithm for Realization of Type-II Discrete Sine Transform
Radix-3 Algorithm for Realization of Type-II Discrete Sine TransformRadix-3 Algorithm for Realization of Type-II Discrete Sine Transform
Radix-3 Algorithm for Realization of Type-II Discrete Sine Transform
 
Radix-3 Algorithm for Realization of Type-II Discrete Sine Transform
Radix-3 Algorithm for Realization of Type-II Discrete Sine TransformRadix-3 Algorithm for Realization of Type-II Discrete Sine Transform
Radix-3 Algorithm for Realization of Type-II Discrete Sine Transform
 
3STUDY MATERIAL XII(Maths) 2022-23.pdf
3STUDY MATERIAL XII(Maths) 2022-23.pdf3STUDY MATERIAL XII(Maths) 2022-23.pdf
3STUDY MATERIAL XII(Maths) 2022-23.pdf
 
Active Noise Reduction by the Filtered xLMS Algorithm
Active Noise Reduction by the Filtered xLMS AlgorithmActive Noise Reduction by the Filtered xLMS Algorithm
Active Noise Reduction by the Filtered xLMS Algorithm
 
A common fixed point theorem for two random operators using random mann itera...
A common fixed point theorem for two random operators using random mann itera...A common fixed point theorem for two random operators using random mann itera...
A common fixed point theorem for two random operators using random mann itera...
 
Banco de preguntas para el ap
Banco de preguntas para el apBanco de preguntas para el ap
Banco de preguntas para el ap
 
Divyesh_14Me63r02(new)
Divyesh_14Me63r02(new)Divyesh_14Me63r02(new)
Divyesh_14Me63r02(new)
 
Multiple Choice Questions_Successive Differentiation (CALCULUS)
Multiple Choice Questions_Successive Differentiation (CALCULUS)Multiple Choice Questions_Successive Differentiation (CALCULUS)
Multiple Choice Questions_Successive Differentiation (CALCULUS)
 
Math1
Math1Math1
Math1
 
Applied mathematics for complex engineering
Applied mathematics for complex engineeringApplied mathematics for complex engineering
Applied mathematics for complex engineering
 
Optimisation.pptx
Optimisation.pptxOptimisation.pptx
Optimisation.pptx
 
Algebra-taller2
Algebra-taller2Algebra-taller2
Algebra-taller2
 
Matrix Methods of Structural Analysis
Matrix Methods of Structural AnalysisMatrix Methods of Structural Analysis
Matrix Methods of Structural Analysis
 
lecture 1.pptx
lecture 1.pptxlecture 1.pptx
lecture 1.pptx
 
A practical work of matlab
A practical work of matlabA practical work of matlab
A practical work of matlab
 

Recently uploaded

Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfMr Bounab Samir
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersSabitha Banu
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxDr.Ibrahim Hassaan
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxUnboundStockton
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitolTechU
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Jisc
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxJiesonDelaCerna
 

Recently uploaded (20)

Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginners
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptx
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docx
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptx
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptx
 

Svm soft margin hyperplanes

  • 1. SVM – Soft margin hyperplanes Sarith Divakar M LBS College of Engineering, Kasaragod sarith@lbscek.ac.in
  • 2. RECAP OF SESSION 1 2 Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
  • 3. Width of the street 𝑊𝑖𝑑𝑡ℎ = (𝑥+ - 𝑥− ) . 𝑤 ||𝑤|| For +ve samples 𝑦𝑖=1 and –ve samples 𝑦𝑖 = -1 𝑦𝑖(𝑤. 𝑥𝑖 + b) −1 = 0 3 1.(𝑤. 𝑥𝑖 + b) −1 = 0 𝑤. 𝑥𝑖 = 1-b i -1.(𝑤. 𝑥𝑖 + b) −1 = 0 𝑤. 𝑥𝑖 = -1-b ii 𝑊𝑖𝑑𝑡ℎ = (1-b – (-1-b)) . 1 ||𝑤|| 𝑥+ 𝑥− 𝑥+ - 𝑥− 𝑊𝑖𝑑𝑡ℎ = 2 ||𝑤|| Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod 3
  • 4. Maximize Width of the street 𝑀𝑎𝑥𝑖𝑚𝑖𝑧𝑒 = 2 ||𝑤|| 𝑥+ 𝑥− 𝑥+ + 𝑥− 𝑀𝑎𝑥𝑖𝑚𝑖𝑧𝑒 = 1 ||𝑤|| 𝑀𝑖𝑛𝑖𝑚𝑖𝑧𝑒 = ||𝑤|| 𝑀𝑖𝑛𝑖𝑚𝑖𝑧𝑒 = 1 2 ||𝑤|| 2 4 𝑦𝑖(𝑤. 𝑥𝑖 + b) −1 = 0 Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod 4
  • 5. Optimization using Lagrange multipliers Expression: 𝑀𝑖𝑛𝑖𝑚𝑖𝑧𝑒 = 1 2 ||𝑤|| 2 Constraint: 𝑦𝑖(𝑤. 𝑥𝑖 + b) −1 = 0 Primal problem: L= 1 2 ||𝑤|| 2 - 𝛼𝑖 [𝑦𝑖(𝑤. 𝑥𝑖 + b) − 1] 𝜕𝐿 𝜕𝑤 = 𝑤- 𝛼𝑖 𝑦𝑖 𝑥𝑖 = 0 𝑤 = 𝛼𝑖 𝑦𝑖 𝑥𝑖 6 𝜕𝐿 𝜕𝑏 = - 𝛼𝑖 𝑦𝑖 = 0 𝛼𝑖 𝑦𝑖 = 0 7 5 Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod 5 𝑥+ 𝑥− 𝑥+ + 𝑥−
  • 6. Optimization using Lagrange multipliers 7 L= 1 2 ||𝑤|| 2 - 𝛼𝑖 [𝑦𝑖(𝑤. 𝑥𝑖 + b) − 1] 𝑤 = 𝛼𝑖 𝑦𝑖 𝑥𝑖 5 6 𝛼𝑖 𝑦𝑖 = 0 L= 1 2 ( 𝛼𝑖 𝑦𝑖 𝑥𝑖 ).( 𝛼𝑗 𝑦𝑗 𝑥𝑗 )- 𝛼𝑖 [𝑦𝑖( 𝛼𝑗 𝑦𝑗 𝑥𝑗 . 𝑥𝑖 + b) − 1] L= 1 2 ( 𝛼𝑖 𝑦𝑖 𝑥𝑖 ).( 𝛼𝑗 𝑦𝑗 𝑥𝑗 )- ( 𝛼𝑖 𝑦𝑖 𝑥𝑖). ( 𝛼𝑗 𝑦𝑗 𝑥𝑗) − 𝛼𝑖 𝑦𝑖 b + 𝛼𝑖 = 0 L= 𝛼𝑖 + 1 2 ( 𝛼𝑖 𝑦𝑖 𝑥𝑖 ).( 𝛼𝑗 𝑦𝑗 𝑥𝑗 )- ( 𝛼𝑖 𝑦𝑖 𝑥𝑖). ( 𝛼𝑗 𝑦𝑗 𝑥𝑗) L= 𝛼𝑖 − 1 2 𝛼𝑖 𝑦𝑖 𝛼𝑗 𝑦𝑗 (𝑥𝑖. 𝑥𝑗) Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod 6
  • 7. SVM Classifier 𝜙 𝛼 = 𝛼 𝑖 − 1 2 𝛼𝑖 𝑦𝑖 𝛼𝑗 𝑦𝑗 (𝑥𝑖. 𝑥𝑗) Compute 𝑤 and b Dual Problem: Find vector 𝛼 which maximizes Subject to 𝛼𝑖 𝑦𝑖 = 0 SVM Classifier Function: 𝑏 = 1 2 (𝑚𝑖𝑛𝑖:𝑦 𝑖=+1(𝑤. 𝑥𝑖) + 𝑚𝑎𝑥𝑖:𝑦 𝑖=−1(𝑤. 𝑥𝑖)) 𝑤 = 𝛼𝑖 𝑦𝑖 𝑥𝑖 f( 𝑥) =(𝑤. 𝑥) - b Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod 7 𝛼𝑖 ≥ 0
  • 8. 8 SVM Classifier Function: f( 𝑥) =(𝑤. 𝑥) - b Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod = − 1 2 , − 1 2 . (𝑥1, 𝑥2) + 5 2 = − 1 2 𝑥1 − 1 2 𝑥2 + 5 2 = − 1 2 [𝑥1 + 𝑥2−5] Equation of maximal margin line f( 𝑥) = 0 𝑥1 + 𝑥2 = 5 0 1 2 3 4 5 6 1 2 3 4 5 6 Sampl e F1 F2 Class 1 2 1 +1 2 4 3 -1
  • 9. Soft margin hyperplanes Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod 9
  • 10. 10 Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
  • 11. Soft margin hyperplanes 11 Outside the margin or on the margin Inside the margin correctly classified Inside the margin misclassified Soft Error 𝐶 𝜉𝑖 𝜉𝑖 = 0 0 < 𝜉𝑖 < 1 𝜉𝑖 > 1 Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod 𝑤 𝑢 0 < 𝜉𝑖 < 1 𝜉𝑖 > 1 𝜉𝑖 = 0 𝜉𝑖 = 0
  • 12. Optimization using Lagrange multipliers 12 Primal problem: Expression: 𝑀𝑖𝑛𝑖𝑚𝑖𝑧𝑒 = 1 2 ||𝑤|| 2 + C 𝜉𝑖 Constraint: 𝑦𝑖(𝑤. 𝑥𝑖 + b)≥ 1 − 𝜉𝑖 𝜉𝑖 ≥ 0 L= 1 2 ||𝑤|| 2 + C 𝜉𝑖 - 𝛼𝑖 𝑦𝑖(𝑤. 𝑥𝑖 + b) − 1 + 𝜉𝑖 − 𝜇𝑖 𝜉𝑖 𝛼𝑖 ≥ 0, 𝜇𝑖 ≥ 0 Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod 𝑤 𝑢 0 < 𝜉𝑖 < 1 𝜉𝑖 > 1 𝜉𝑖 = 0 𝜉𝑖 = 0
  • 13. 13 𝜕𝐿 𝜕𝑤 = 𝑤- 𝛼𝑖 𝑦𝑖 𝑥𝑖 = 0 𝑤 = 𝛼𝑖 𝑦𝑖 𝑥𝑖 𝜕𝐿 𝜕𝑏 = - 𝛼𝑖 𝑦𝑖 = 0 𝛼𝑖 𝑦𝑖 = 0 𝜕𝐿 𝜕𝜉 𝑖 = C - 𝛼𝑖 - 𝜇𝑖= 0 𝜇𝑖= C -𝛼𝑖 𝜇𝑖≥ 0 ⇒ 𝛼𝑖 ≤ 𝐶 L= 1 2 ||𝑤|| 2 + C 𝜉𝑖 - 𝛼𝑖 𝑦𝑖(𝑤. 𝑥𝑖 + b) − 1 + 𝜉𝑖 − 𝜇𝑖 𝜉𝑖 Optimization using Lagrange multipliers Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
  • 14. Optimization using Lagrange multipliers L= 1 2 ( 𝛼𝑖 𝑦𝑖 𝑥𝑖 ).( 𝛼𝑗 𝑦𝑗 𝑥𝑗 ) + C 𝜉𝑖 − 𝛼𝑖 𝑦𝑖( 𝛼𝑗 𝑦𝑗 𝑥𝑗 . 𝑥𝑖 + b) − 1 + 𝜉𝑖 - 𝐶𝜉𝑖 + 𝛼𝑖 𝜉𝑖 L= 1 2 ( 𝛼𝑖 𝑦𝑖 𝑥𝑖 ).( 𝛼𝑗 𝑦𝑗 𝑥𝑗 ) + C 𝜉𝑖- ( 𝛼𝑖 𝑦𝑖 𝑥𝑖). ( 𝛼𝑗 𝑦𝑗 𝑥𝑗) − 𝛼𝑖 𝑦𝑖 b + 𝛼𝑖 − 𝛼𝑖 𝜉𝑖 −C 𝜉𝑖 + 𝛼𝑖 𝜉𝑖 = 0 L= 𝛼𝑖 + 1 2 ( 𝛼𝑖 𝑦𝑖 𝑥𝑖 ).( 𝛼𝑗 𝑦𝑗 𝑥𝑗 )- ( 𝛼𝑖 𝑦𝑖 𝑥𝑖). ( 𝛼𝑗 𝑦𝑗 𝑥𝑗) L= 𝛼𝑖 − 1 2 𝛼𝑖 𝑦𝑖 𝛼𝑗 𝑦𝑗 (𝑥𝑖. 𝑥𝑗) Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod 14 L= 1 2 ||𝑤|| 2 + C 𝜉𝑖 - 𝛼𝑖 𝑦𝑖(𝑤. 𝑥𝑖 + b) − 1 + 𝜉𝑖 − 𝜇𝑖 𝜉𝑖 𝑤 = 𝛼𝑖 𝑦𝑖 𝑥𝑖 𝛼𝑖 𝑦𝑖 = 0 𝜇𝑖= C -𝛼𝑖
  • 15. SVM Soft Margin Classifier 𝜙 𝛼 = 𝛼 𝑖 − 1 2 𝛼𝑖 𝑦𝑖 𝛼𝑗 𝑦𝑗 (𝑥𝑖. 𝑥𝑗) Compute 𝑤 and b Dual Problem: Find vector 𝛼 which maximizes Subject to 𝛼𝑖 𝑦𝑖 = 0 SVM Classifier Function: 𝑏 = 1 2 (𝑚𝑖𝑛𝑖:𝑦 𝑖=+1(𝑤. 𝑥𝑖) + 𝑚𝑎𝑥𝑖:𝑦 𝑖=−1(𝑤. 𝑥𝑖)) 𝑤 = 𝛼𝑖 𝑦𝑖 𝑥𝑖 f( 𝑥) =(𝑤. 𝑥) - b Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod 15 0 ≤ 𝛼𝑖 ≤ 𝐶
  • 16. Hyperparamter Tuning 16 Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
  • 17. C=1 17 Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
  • 18. C=2000 18 Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
  • 19. C=78 19 Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
  • 20. Hyperparameter Tuning Parameter Range Step Length C [20, 211] 21 20 Parameter Cherkassky et. al. [11] C max( 𝑦 + 3𝜎 , | 𝑦 − 3𝜎|) Heuristic Methods Search Space Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod
  • 21. Reference 1. Sudheep Elayidom, M. Data mining and warehousing, Cengage. 2. V. Vapnik, The Nature of Statistical Learning Theory, Springer, 1995 3. Vapnik, V. Statistical Learning Theory. John Wiley & Sons. Inc., New York, 1998 4. B. Schölkopf and A. J. Smola, Learning with Kernels, MIT Press, Cambridge, MA, 2002 5. Davide, M. and Simon, H. Advances in Kernel Methods, 1999, 226-227. 6. Jaiwei Han, Micheline Kamber, “Data Mining Concepts and Techniques”, Elsevier, 2006. 7. Pang-Ning Tan, Michael Steinbach, “Introduction to Data Mining”, Addison Wesley, 2006. 8. Dunham M H, “Data Mining: Introductory and Advanced Topics”, Pearson Education, New Delhi, 2003. 9. Mehmed Kantardzic, “Data Mining Concepts, Methods and Algorithms”, John Wiley and Sons, USA, 2003. 10. Sarith Divakar M, Sudheep Elayidom M, Rajesh R, “An efficient approach for crop yield forecasting using machine learning techniques based on normalized difference vegetation index and climatic indices”, JARDCS, Vol. 10, 15-Special Issue, 2018 11. Cherkassky, V. and Ma, Y. Selection of meta-parameters for support vector regression. International Con-ference on Artificial Neural Networks, 2002, 687-693 Department of Computer Science and Engineering, LBS College of Engineering, Kasaragod 21