Answers for "sklearn confusion matrix display show"

0

confusion matrix with labels sklearn

import pandas as pd
y_true = pd.Series([2, 0, 2, 2, 0, 1, 1, 2, 2, 0, 1, 2])
y_pred = pd.Series([0, 0, 2, 1, 0, 2, 1, 0, 2, 0, 2, 2])

pd.crosstab(y_true, y_pred, rownames=['True'], colnames=['Predicted'], margins=True)
Posted by: Guest on March-07-2021

Code answers related to "sklearn confusion matrix display show"

Python Answers by Framework

Browse Popular Code Answers by Language