I am trying to perform 5 fold cross validation in python using Keras ANN Classifier and I need a single mean classification report and confusion matrix for all the folds.
I could calculate the confusion matrix and the classification report for each fold and display them following the code snippet provided here.
Question:
How can I calculate the average confusion matrix and average report for all folds?