Diff of /Confusion_chart.m [000000] .. [24d692]

Switch to side-by-side view

--- 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