About the classification model evaluation index
This article examines the classification model evaluation index.
Hello!
Today, we will look at the classification model evaluation index.
There are several indicators for evaluating the performance of classification models.
Accuracy
Accuracy represents the percentage of all predictions correctly predicted and is calculated as (TP + TN) / (TP + TN + FP + FN).
This represents the percentage of samples that the model correctly predicted; however, it may not be an appropriate indicator for a disproportionate class distribution.
Precision and Recall
The precision represents the proportion of what the model is actually positively predicted, and is calculated as TP / (TP + FP).
Reproducibility represents the proportion of what the model actually predicts as positive, and is calculated as TP / (TP + FN).
Precision focuses on reducing false positives, while reproducibility focuses on reducing false negatives.
F1 Score
The F1 score is a harmonic average of precision and reproducibility, calculated as 2* (precision * reproducibility) / (precision + reproducibility).
This is an indicator of whether precision and reproducibility are balanced.
ROC Curves and AUC
ROC(Receiver Operating Characteristic) 곑μ
A graph showing the classification performance of the model, which represents the curve of the false positive ratio (FPR) for reproducibility.
AUC(Area Under the Curve)
The area under the ROC curve is an indicator of the performance of the model comprehensively.
Confusion Matrix
The predicted values of the actual class and model in the two-way classification are tabulated and used to evaluate the classification performance of the model in detail by representing TP, TN, FP, and FN.
Utilization
These evaluation metrics are used to comprehensively evaluate the performance of the model and to understand the performance of each model.
at the end of the day
It is utilized to accurately evaluate the performance of the model and improve the performance of the model by comprehensively considering the evaluation indicators of the classification model.
Thank you!