selecting c and gamma value
问题 Hi I am performing SVM classification using SMO, in which my kernel is RBF, now I want to select c and sigma values, using grid search and cross validation, I am new to kernel functions, please help, in step by step process 回答1: Pick some values for C and sigma that you think are interesting. E.g., C = {1, 10, 100, 1000} and sigma = {.01, .1, 1} (I'm just making these up). Divide the training set into k (e.g. 10) parts, preferably in a stratified way. Loop over all pairs of C and sigma values