Xgboost Confusion Matrix Interpretation
Xgboost Confusion Matrix Interpretation
True Positives (TP): These are the cases where the model correctly predicted
the positive class.
In our case the model correctly predicted the positive class as 31
Which means that the model correctly identifies a person as healthy
True Negatives (TN): These are the cases where the model correctly
predicted the negative class.
In our case the model correctly predicted the negative class as 5
Which means that the model correctly Identifies a person with COPD
False Positives (FP): These are the cases where the model incorrectly
predicted the positive class when it's actually negative.
In our case the model incorrectly predicted the positive class when it's
actually negative as 2
Which means that the model wrongly identifies a person as healthy
False Negatives (FN): These are the cases where the model incorrectly
predicted the negative class when it's actually positive.
In our case the model incorrectly predicted the negative class when it's
actually positive as 10
Which means that the model wrongly identifies that the person has COPD