I have a project which i was working on but i was getting errors while classifying and evaluating the accuracy.
matlab files are attatched and dataset image is also attatched.
% --- Executes on button press in pushbutton6.
function pushbutton6_Callback(hObject, ~, handles)
test = handles.ImgData3;
Affect = handles.ImgData4;
% Load All The Features
load('Training_Data.mat')
% Put the test features into variable 'test'
result = multisvm(Train_Feat,Train_Label,test);

2 件のコメント

KALYAN ACHARJYA
KALYAN ACHARJYA 2021 年 3 月 15 日
Be specific, if you want help, then you need to make it easy to be helped.
krishna vamsi narla
krishna vamsi narla 2021 年 3 月 15 日
This was the error I was getting..please help me find the solution. .m files are attache dabove

サインインしてコメントする。

 採用された回答

DGM
DGM 2021 年 3 月 16 日

0 投票

I'm not familiar with your project, but the error message seems to mean exactly what it says. Your gui is calling fitcsvm() with the key-value pair 'showplot',false. As far as I understand it, that's not a valid kvp for fitcsvm(). You would set that option by assigning it to the 'hyperparameteroptimizationoptions' struct, and then pass that to fitcsvm().
I'm not exactly familiar with these tools, and i'm pretty sure they've changed since the version i have, so I may be totally wrong.

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by