Classification work on voting the object belongs from which classes has more probability There are two types of classification : Binary classification : There are two classes we have ex: male-female , cat-dog , yes-not Multiple classification : There are classes more than two we have ex: traffic signs , face recognition , flower race , Digit Recognition Confusion matrix : Confusion matrix is one type of technique to evaluate the model accuracy for classification problem. In this technique we consider how many of positive and negative data points we predict correctly. The main consideration terms are accuracy, precision and recall The accuracy was an appealing matric, because it was a single number. Here precision and recall(sensitivity) are two numbers. So to get the final score (accuracy) of our model we use F1 score, so that we have a single number. Here is the F1 score's mathematical formula: F1 = 2x precision x recall / (precision ...