how to plot confusion matrix using seaborn code example
Example: confusion matrix seaborn
import seaborn as sns
import matplotlib.pyplot as plt
plt.figure(figsize = (10,7))
sns.heatmap(df_cm, annot=True)
import seaborn as sns
import matplotlib.pyplot as plt
plt.figure(figsize = (10,7))
sns.heatmap(df_cm, annot=True)