問題詳情

28. In machine learning, a confusion matrix is a table that is often used to describe the performanceof a classification model on a set of test data for which the true values are known. One can usethe matrix to calculate the evaluation metrics, such as accuracy, precision, recall, and F1 score.Suppose a confusion matrix contains TP (true positive) = 900, FN (false negative) = 100, FP (falsepositive) = 50, and TN (true negative) = 950. What is the value of precision for the model?
(A) 1850/2000
(B) 900/1000
(C) 900/2000
(D) 50/950
(E) 900/950

參考答案

用户評論

SLH】評論

precition = TP / (TP + ☆☆) ,........