Metrics for Classification Problems
Accuracy alone may not be a sufficient metric, so we look at different factors such as:
Precision
Precision: proportion of true positives over the true and false positives
Link to originalSensitivity
Sensitivity (or recall): proportion of true positives over true positives and false negatives
Link to originalF1 Score
F1 Score: harmonic mean between sensitivity and precision
The general weighted form looks like this:
Link to original
Metrics for Regression Problems
Assume our regression is predicting real numbers. Call predictions and true values . Then define the following:
Mean Absolute Error
Mean Absolute Error:
Link to originalMean Squared Error
Mean Squared Error:
Link to originalRoot-Mean-Squared-Error
Root-Mean-Squared-Error:
Link to original