[24d692]: / Confusion_chart.m

Download this file

7 lines (5 with data), 155 Bytes

1
2
3
4
5
6
7
%% Confusion Chart
test = testData;
label_predict = classify(net, test);
label_actual = testData.Labels;
plotconfusion(label_actual, label_predict)