error in using svm

10 Ansichten (letzte 30 Tage)
kash
kash am 5 Mär. 2012
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')

Akzeptierte Antwort

Wayne King
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);

Weitere Antworten (0)

Kategorien

Mehr zu Statistics and Machine Learning Toolbox finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by