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 Kommentare

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

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

DGM
DGM am 16 Mär. 2021

0 Stimmen

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.

Weitere Antworten (0)

Kategorien

Mehr zu Genomics and Next Generation Sequencing finden Sie in Hilfe-Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by