以機器學習對於巨量資料進行分析後,通常會使用混淆矩陣(confusion matrix),對於所產生的分類器進行評估,其中將分析結果分為true positive (TP)、true negative (TN)、false positive (FP)及false negative (FN),下列敘述何者有誤?
A正確率Accuracy = (TP + TN) / (TP + TN + FP + FN)
B召回率Recall = TP / (TP + FN)
C精確率Precision = TP / (TP + FP)
DF1 Score = TP / (TP + FP + FN)正確答案
答案與詳解
