Borrar filtros
Borrar filtros

How do I find slack variables in SVM?/ Distance to the boundary?

12 visualizaciones (últimos 30 días)
Mech Princess
Mech Princess el 8 de Feb. de 2013
Comentada: Aliza Rubenstein el 19 de En. de 2017
Hi, I used "svmtrain" to train the algorithm: svmStruct=svmtrain(xdata,group); I used "svmclassify" to classify.
My data is not perfectly linearly separable but I still used a linear classifier. In theory, allowances are made for by a slack variable. (Soft margin) I refer to the toolbox help where the theory is. It mentions the slack variable and 2 ways it is computed. http://www.mathworks.com/help/bioinfo/ug/support-vector-machines-svm.html
My issue is that, svmStruct does not save the slack variable. Neither can I find it in the function to recall it and save it.
If not, how can I find the distance from each data point to the boundary?
Can anyone help me with this? Thanks

Respuestas (2)

the cyclist
the cyclist el 8 de Feb. de 2013
It is the input parameter 'boxconstraint' to the svmtrain() command. The default value is 1.
  5 comentarios
the cyclist
the cyclist el 8 de Feb. de 2013
Sorry! I thought the slack variable was the parameter C (which is actually the "penalty parameter").
I am not 100% sure that the slack variables have to be explicitly calculated to solve for the support vectors. (It's been a long time since I have used these techniques, and I actually don't have the toolbox at this time, to check.)
Sorry to have been more a distraction than a solution!
Mech Princess
Mech Princess el 9 de Feb. de 2013
Thats fine. Hope someone will answer. Thanks

Iniciar sesión para comentar.


Ilya
Ilya el 10 de Feb. de 2013
By definition, a slack variable for observation x with label y (-1 or +1) is max(0,1-y*f), where f is the SVM prediction (soft score ranging from -inf to +inf). svmclassify does not return the scores, so you need to compute the SVM scores yourself. Start with the definition of the SVM model, compute kernel products, multiply by the alpha coefficients and add the bias term. It is easier than it sounds.
  6 comentarios
Mark
Mark el 19 de Ag. de 2014
Thanks!
Only one remark: I think that this works fine if 'autoscale' is set to false (in the svmtrain function). If the data is scaled, you should also scale Xnew before you feed it to the kernel function:
shift = svm_struct.ScaleData.shift;
scale = svm_struct.ScaleData.scaleFactor;
Now you can scale Xnew:
XnewScaled = ( Xnew - shift ) .* scale;
and then use XnewScale in the kernel function as above:
f = kfun( sv, XnewScaled, kfunargs{:} )' * alphaHat + bias
Aliza Rubenstein
Aliza Rubenstein el 19 de En. de 2017
Thanks for this information. I think it should be Xnew + shift, not Xnew - shift. shift is the negative of the mean.

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by