Question

I have a feature vector of dimension about 2000. All are histogram features.

I dont know which is effective in my case : applying SVM with RBF kernel or Chi-squared kernel ??

Could you please suggest me the effective kernel in my case?

Was it helpful?

Solution

In general Chi-squared and Intersection kernels are best suited for histogram style feature vectors. However, the results can often vary depending on the data, histogram normalization, kernel parameters etc. So the best way to choose the kernel type and the SVM and kernel parameters would be to do it empirically using cross-validation.

Also, FYI a svm is linear only if the kernel is linear. With chi-squared, Intersection, RBF and polynomial kernels, the svm will no longer be linear.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top