Is it possible to have control on C parameter of SVM in Matlab ?

2 visualizaciones (últimos 30 días)
n
n el 15 de Feb. de 2011
Hi,
I have seen the following question and answer:
http://mathforum.org/kb/message.jspa?messageID=3735688&tstart=0
but it seems to be too complicated! are there any other ways perhaps in newer versions of bioinoformatic toolbox to have control on C parameter of SVM? or somehow have control on how SVM parameters are being optimized?
Thanks

Respuestas (1)

n
n el 17 de Feb. de 2011
Here is an example of using 'QuadProg_Opts' option in svmtrain:
myoption = optimset('PrecondBandWidth',2);
% this is the ub parameter of quadprog I guess
svmStruct =svmtrain(train_data,train_label,'Kernel_Function','rbf','RBF_Sigma', 0.5,'QuadProg_Opts', myoptions);
But the C value seem to be relative to box constrain as used in the example of svmtrain:
svmStruct = svmtrain(data(train,:),groups(train),...
'showplot',true,'boxconstraint',1e6);

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by