Model Evaluation
You will learn: how to assess to evaluation of ML models.
Classification metrics
Accuracy: computes the number of correct predictions divided by the total number of samples.
Accuracy=number of samplesnumber correct predictions
Sensitivity: also known as recall, is computed as the fraction of true positives that are correctly identified.
Sensitivity=number of true positives+number of false negativesnumber of true positives
Precision: computed as the fraction of retrieved instances that are relevant.
Precision=number of true positives+number of false positivesnumber of true positives
Specificity: computed as the fraction of true negatives that are correctly identified.
Specificity=number of true negatives+number of false positivesnumber of true negatives
🚧 This section is still under construction!