Filter löschen
Filter löschen

how to classify with svm

2 Ansichten (letzte 30 Tage)
Fardin Gorgini
Fardin Gorgini am 28 Jan. 2018
Beantwortet: Bernhard Suhm am 1 Feb. 2018
HI
I have a number of photos that I have featured, that is, 11 properties for each photo. The number of photos is 770. I saved the data to an Excel file, which is 11 * 770.
How should I read this file?
And how do I train an SVM model using these features with svm (rbf, mlp, lvq)?
For svm, I need to take input from the Excel file.
Please help me soon.
  1 Kommentar
Image Analyst
Image Analyst am 28 Jan. 2018
To read the file you can use readtable(). Then follow the examples with the SVM. For example, you might try the "Classification Learner" app on the Apps tab of the tool ribbon. Attach your Excel workbook if you need more help and maybe someone will try something.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Bernhard Suhm
Bernhard Suhm am 1 Feb. 2018
The table needs to have the various observations as rows. Alternatively to the ClassificationLearnerApp, you can train an SVM using the fitcsvm() function.
You can switch to a different kernel using the 'KernelFunction' input argument, for RBF it would be 'rbf'.
See https://www.mathworks.com/help/stats/fitcsvm.html for more details.

Community Treasure Hunt

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

Start Hunting!

Translated by