Can anyone tell me how does this code works?
조회 수: 6 (최근 30일)
이전 댓글 표시
clc;
clear ;
close all;
%%
load FA
F1 = Feature;
load NF
F2 = Feature;
xdata = [F1;F2];
group = cell(1,1);
for ii = 1:size(F1,1)
group{ii,1} = 'Fatigue';
end
for ii = 1:size(F2,1)
group{ii+size(F1,1),1} = 'Non-Fatigue';
end
svmStruct = fitcsvm(xdata,group,'HyperparameterOptimizationOptions',struct('showplot',true));
% Testing
save svm svmStruct
load svm
for ii = 1:size(F1,1)
species = ClassificationSVM(svmStruct,F1(ii,:));
disp([ group{ii,1} ' = ' species]);
end
for ii = 1:size(F2,1)
species = ClassificationSVM(svmStruct,F2(ii,:));
disp([ group{ii+size(F1,1),1} ' = ' species]);
end
I want to figure out specially what happens in the for loops.
댓글 수: 0
채택된 답변
Neuropragmatist
2020년 7월 23일
Hi,
It is difficult to know exactly what the code is doing without the data files it is loading.
However, at first glance I would guess it trains a machine learning algorithm on a known data set using the fitcsvm function and then it queries this model with unknown values in the for loops using ClassificationSVM.
Have you tried looking at the contents of xdata and group? What about the figure fitcsvm makes when you run the code? Then look at the help pages for these two functions:
With all the information together I'm sure it will make sense to you, if not you can start to ask more specific questions about the functions etc.
NP.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!