What are they best optimized parameters to be used in svm for binary classification and linear kernel e.g values of -c, -b, -h, -s etc to get a best separating clusters of svm with separating hyperplane.
In SVM the problem is finding the right kernel, after finding it another problem is finding the right set of hyperparameters like a,c,h in linear kernel. For finding the parameters there are well defined methods like:
1.Grid Search
2.Evolutionary methods like PSO
3.Other Optimization methods.
Parameter C is called soft margin constant and is very important:
1.Big C indicates we want to have a high train accuracy and consequently lower test accuracy.
2.Small C shows that we want to have a tolerated amount of error in training for the sake of lower error for test.