Solved – Does the order of features affect the solution model classifier accuracy in an SVM using RBF kernel

classificationfeature selectionfeature-engineeringsvm

Is it possible that the order of features will change the accuracy of an SVM RBF kernel based classifier? I'm also interested in whether this would affect other ML classification algorithms, if applicable?

For example, if you have 5 features, and you order the columns differently:

1 2 3 4 5

5 4 3 2 1

1 5 2 4 3

Will all of these always produce the same result?

Best Answer

In general, it should not make a difference. For many methods (Naive Bayes, Decision Trees, Regression) this is not a factor. For SVM, it may depend on the type of SVM and the method used to solve it - if the algorithm used is approximate, or not run to convergence, or involves randomness that may lead to somewhat different results.

Related Question