How to write simple predict() function for ClassificationSVM

조회 수: 2 (최근 30일)
Robert Kowalski
Robert Kowalski 2016년 12월 2일
댓글: Aditi Vedalankar 2018년 9월 10일
I have trained ClassificationSVM. What is the simplest way to write function working like predict( SVMModel , X ) ? I would be gratefull for equation containing properties names from ClassificationSVM class.
Thanks !

답변 (1개)

Iddo Weiner
Iddo Weiner 2016년 12월 2일
First you'd have to select features, check out:
https://www.mathworks.com/discovery/feature-selection.html
for info and/or ideas on how to do this.
You'll also need to decide what kind of model you're using, for the standard multi-linear regression check out the documentation on regress()
https://www.mathworks.com/help/stats/regress.html?s_tid=srchtitle
Now - if you really want the simplest model, I'd say you could skip feature selection and just run:
regress(labels, features)
and this will give you the regressor for each feature. Now your model is simply
prediction = A1*feature1 + ... + AN*featurenN
But I would generally advise against this, mainly becasue of the danger of overfitting. I suggest building a train and test based algorithm
  댓글 수: 3
ramayya venna
ramayya venna 2017년 1월 23일
편집: ramayya venna 2017년 1월 23일
Did you get the answer? I also have the same doubt. In my case, I am using polynomial kernel (hence beta is an empty matrix). How can I write simple predict function to test new data sample?
Aditi Vedalankar
Aditi Vedalankar 2018년 9월 10일
dear all, I have similar doubt . I have trained model generated by classification learner model. now when i use it for predicting the test data, the error appears as Function 'subsindex' is not defined for values of class 'cell'.
Error in trainClassifier (line 48) predictors = inputTable(:, predictorNames);
Error in Test_svm1 (line 7) [trainedClassifier, validationAccuracy] = trainClassifier(trainingData); pl help

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Support Vector Machine Regression에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by