error in using svm
10 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
i am using 2011b,i get the following error
plz hemp
Error using svmtrain (line 391) The kernelcachelimit argument must be a positive scalar.
Error in smo (line 22) svmModel= svmtrain(Training,Group, 'Kernel_Function','linear','Method','SMO','kernelcachelimit','1000')
0 Kommentare
Akzeptierte Antwort
Wayne King
am 5 Mär. 2012
You have entered the 'kernelcachelimit' as a string variable, please use a positive scalar.
svmModel= svmtrain(Training,Group, 'Kernel_Function','linear','Method','SMO','kernelcachelimit',1000);
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Statistics and Machine Learning Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!