Introduction to Machine Learning with Python (15) – Confusion Matrix
What is a confusion matrix? It is a table used to evaluate the model’s error locations in classification problems. The rows represent the actual categories that the results should belong to, while the columns represent the predictions we made. Using this table, we can easily identify which predictions are incorrect. Creating a Confusion Matrix A … Read more