Deep Learning

Accuracy, precision and recall

In deep learning object class predictions are often characterised by the following accuracy metrics.

  1. Accuracy - ratio of correct classifications i.e. "how correct predictions are overall"
  2. Precision - ratio of correct identified positive out of predicted positive i.e. "how correct prediction are of positive"
  3. Recall - ratio of correct predicted positive out of actual positive i.e. "how many of actual positive are found"

Measures are calculated as follows.

                                Predicted 

                            Postive   Negative
 
  Actual /      Positive       TP        FN
Ground Truth    Negative       FP        TN 

References