why am i getting error with this code?
显示 更早的评论
testdata = readtable("testdata.xlsx");
predictions = char(trainedModel.predictFcn(testdata));
iscorrect=predictions==cell2mat(string((testdata.Character)));
iscorrect=iscorrect(:,2);
accuracy = sum(iscorrect)*100/30;
9 个评论
Fifteen12
2023-2-8
What is the error you're getting? Without your test data it's difficult to replicate your issue.
Walter Roberson
2023-2-8
Does the predictFcn of the trainedModel accept a table as input?
Why are you comparing only the second character of each predicted value against the table ?
Why are you dividing accuracy by the magic number 30 instead of by the number of rows in incorrect ?
Kregozt
2023-2-8
Kregozt
2023-2-8
Kregozt
2023-2-8
Walter Roberson
2023-2-9
accuracy = mean(iscorrect) * 100.
Walter Roberson
2023-2-9
try
predictions = trainedModel.predictFcn(testdata);
and show us class(predictions) and size(predictions)
Kregozt
2023-2-9
Walter Roberson
2023-2-9
It would make it easier for us to advise you if you were to call
predictions = trainedModel.predictFcn(testdata);
whos predictions
and show us the output of the whos call.
回答(1 个)
Sulaymon Eshkabilov
2023-2-8
0 个投票
Without looking at your data, it is diffiuclt to address your question properly. Thus, pl., post your sample data.
类别
在 帮助中心 和 File Exchange 中查找有关 Pattern Recognition 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!