12 December 2014 4 8K Report

 I wrote code sift and knn but performance is very low so ı want to use svm for classify. but ı have 10 class and svm doesn't support multi class so I wrote code multiclass svm (http://www.mathworks.com/matlabcentral/fileexchange/39352-multi-class-svm) but matlab give an  eror for k means=150. this is :

Error using seqminopt>seqminoptImpl (line 198)

No convergence achieved within maximum number of iterations.

Error in seqminopt (line 81)

[alphas offset] = seqminoptImpl(data, targetLabels, ...

Error in svmtrain (line 499)

[alpha, bias] = seqminopt(training, groupIndex, ...

Error in multisvm (line 20)

models(k) = svmtrain(TrainingSet,G1vAll);

Error in den (line 57)

results = multisvm(histtrain,grupp,histogramtst);

.This error only kmeans k=>150. I wrote code for k means k=30 and it doesn't give an error.

Similar questions and discussions