この記事について
Confusion Matrixについてまとめる
Confusion Matrixとは
クラス分類において、評価指数の1つ。
Predicted Negative | Predicted Positive | |
---|---|---|
Actual Negative | True Negative | False Positive |
Actual Positive | False Negative | True Positive |
Precision = TP / (TP + FP)
Recall = TP / (TP + FN)
from sklearn.metrics import confusion_matrix
cm = confusion_matrix(y_test, y_pred)