I am confused about my code, can you guys please help me to tell me what SVM did I use?
1 view (last 30 days)
Show older comments
Cassandra Adela
on 26 Jan 2022
Edited: Walter Roberson
on 2 Feb 2022
i'm looking for code, then I changed it a little bit, and now i'm confused about multi class SVM. Can you guys tell me my code is one vs one or one vs all multi class svm? thank you in advance...
load('trainingData.mat');
load('testingData.mat');
TrainingSet = Xtrain;
TestingSet = Xtest;
GroupTraining = Ytrain;
GroupTesting = Ytest;
% t = templateSVM('KernelFunction','gaussian');
% t = templateSVM('KernelFunction','linear');
%t = templateSVM('KernelFunction','polynomial');
train = fitcecoc(TrainingSet,GroupTraining, 'Learners', t);
classification = predict(train, TestSet);
confusionchart(GroupTesting', classification')
ConfusionMatrix = confusionmat(GroupTesting', classification')
0 Comments
Accepted Answer
More Answers (0)
See Also
Categories
Find more on Classification in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!