Error on Kernel_Function is not a valid parameter name.
8 次查看(过去 30 天)
显示 更早的评论
function [itr] = multisvm( T,C,tst )
u=unique(C);
N=length(u);
c4=[];
c3=[];
j=1;
k=1;
if(N>2)
itr=1;
classes=0;
cond=max(C)-min(C);
while((classes~=1)&&(itr<=length(u))&& size(C,2)>1 && cond>0)
c1=(C==u(itr));
newClass=c1;
svmStruct = fitcsvm (T,newClass,'Kernel_Function','rbf','Method','QP');
classes = ClassificationSVM(svmStruct,tst);
for i=1:size(newClass,2)
if newClass(1,i)==0;
c3(k,:)=T(i,:);
k=k+1;
end
end
T=c3;
c3=[];
k=1;
% This is the loop for reduction of group
for i=1:size(newClass,2)
if newClass(1,i)==0;
c4(1,j)=C(1,i);
j=j+1;
end
end
C=c4;
c4=[];
j=1;
cond=max(C)-min(C);
if classes~=1
itr=itr+1;
end
end
end
end
Why am i getting error on Kernel_Function is not a valid parameter name.?
error line>>
svmStruct = fitcsvm (T,newClass,'Kernel_Function','rbf','Method','QP');
0 个评论
采纳的回答
Image Analyst
2021-6-30
Recheck the documentation for fitcsvm. There is no underline in the name of the KernelFunction option. To fix:
svmStruct = fitcsvm (T, newClass, 'KernelFunction', 'rbf',' Method', 'QP');
2 个评论
Image Analyst
2021-6-30
I'm not seeing 'Method" as one of the available Name, Value pairs you can pick from. Why do you think it is?
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Classification Learner App 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!