MACHINE LEARNING

APPLICATION OF SUPERVISED LEARNING

SUPPORT VECTOR MACHINE SVM

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Suppose you have trained an SVM with linear decision boundary after training SVM, you correctly infer that your SVM model is underfitting.Which of the following option would you more likely to consider iterating SVM next time?
A
You want to increase your data points
B
You want to decrease your data points
C
You will try to calculate more variables
D
You will try to reduce the features
Explanation: 

Detailed explanation-1: -Suppose you have trained an SVM with a linear decision boundary after training SVM, you correctly infer that your SVM model is underfitting. 16) Which of the following option would you more likely to consider iterating SVM next time? The best option here would be to create more features for the model.

Detailed explanation-2: -Linear kernel SVC and Logistic Regression can produce the same decision boundary, that is the exact same model, and therefore the exact same performance metrics, despite using entirely different methods.

Detailed explanation-3: -In SVM, to avoid overfitting, we choose a Soft Margin, instead of a Hard one i.e. we let some data points enter our margin intentionally (but we still penalize it) so that our classifier don’t overfit on our training sample. Here comes an important parameter Gamma (), which control Overfitting in SVM.

There is 1 question to complete.