How to classify using non-linear support vector machine
2 ビュー (過去 30 日間)
古いコメントを表示
By using svmtrain() function and svmclassify() I got the results for linear svm. But for non-linear support vector machine I cannot get the output.
How to classify using non-linear kernels like RBF, Quadratic and polynamial kernels. Please explain how to use parameters.
svmStruct = svmtrain(data(train,:),groups(train),'rbf', 1, 'showplot',true); Warning: You specified radial basis function parameters but not a radial basis function kernel.
0 件のコメント
回答 (1 件)
Ilya
2012 年 3 月 27 日
svmStruct = svmtrain(data(train,:),groups(train),'kernel_function','rbf')
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Discriminant Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!