I have a confusion matrix:
I got it by running the scikit package for confusion matrices. I would now like to find out for example the 4 False Positives and the 2 True negatives and which concrete feature values they had to make a describtive analysis. How could I do this using python? The confusion matrix is produced buy a neural net and validated. I would like somehow to find out which samples of the validation set are FP and TN to check them manually for any differences.
Thanks!