MACHINE LEARNING

APPLICATION OF SUPERVISED LEARNING

SUPPORT VECTOR MACHINE SVM

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
What do you mean by generalization error in terms of the SVM?
A
How far the hyperplane is from the support vectors
B
How accurately the SVM can predict outcomes for unseen data
C
The threshold amount of error in an SVM
D
None of the above
Explanation: 

Detailed explanation-1: -What do you mean by generalization error in terms of the SVM? Explanation: Generalisation error in statistics is generally the out-of-sample error, which measures how accurately a model can predict values for previously unseen data.

Detailed explanation-2: -Accuracy can be computed by comparing actual test set values and predicted values. Well, you got a classification rate of 96.49%, considered as very good accuracy. For further evaluation, you can also check precision and recall of model.

Detailed explanation-3: -SVM tries to finds the “best” margin (distance between the line and the support vectors) that separates the classes and this reduces the risk of error on the data, while logistic regression does not, instead it can have different decision boundaries with different weights that are near the optimal point.

Detailed explanation-4: -The effectiveness of SVM depends on the selection of kernel, kernel’s parameters and soft margin parameter C. . Each pair of parameters is checked using cross validation, and the parameters with best cross validation accuracy are picked.

There is 1 question to complete.