0% found this document useful (0 votes)
33 views1 page

Xgboost Confusion Matrix Interpretation

The document explains the interpretation of a confusion matrix for an XGBoost model. It details the counts of True Positives (31), True Negatives (5), False Positives (2), and False Negatives (10), providing insights into the model's performance in predicting healthy individuals and those with COPD. The model correctly identifies healthy individuals but has issues with false negatives, misclassifying some COPD cases.

Uploaded by

suyashkumbr
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
33 views1 page

Xgboost Confusion Matrix Interpretation

The document explains the interpretation of a confusion matrix for an XGBoost model. It details the counts of True Positives (31), True Negatives (5), False Positives (2), and False Negatives (10), providing insights into the model's performance in predicting healthy individuals and those with COPD. The model correctly identifies healthy individuals but has issues with false negatives, misclassifying some COPD cases.

Uploaded by

suyashkumbr
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

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

You might also like