--- a +++ b/Confusion_chart.m @@ -0,0 +1,7 @@ +%% Confusion Chart + +test = testData; +label_predict = classify(net, test); +label_actual = testData.Labels; + +plotconfusion(label_actual, label_predict) \ No newline at end of file