non linear problem of SVM
Mostrar comentarios más antiguos
by using svmtrain and sv classify bellow :
svmStruct = svmtrain(data(train,:),groups(train),'showplot',true);
I can't find the result and I got the answer :
Warning: The display option can only plot 2D training data.
Is there anyone can help me?
Respuestas (1)
Shashank Prasanna
el 1 de Feb. de 2013
Editada: Shashank Prasanna
el 1 de Feb. de 2013
0 votos
you data is definitely high dimensional (more than 2) and obviously you can't visualize higher dimension data. remove the 'showplot' 'true' or make it 'false'
The warning won't affect the classification.
2 comentarios
ftsst tupamahu
el 29 de Abr. de 2014
previous question... after change the svmStruct = svmtrain(data(train,:),groups(train),'showplot',true); become svmStruct = svmtrain(data(train,:),groups(train),'showplot',false); i can't see figure result from svmStruct...any solution? thanks before :)
Shashank Prasanna
el 29 de Abr. de 2014
showplot should be true if you want to see the visualization. If you get a warning, see my original answer above.
Categorías
Más información sobre Deep Learning Toolbox en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!