Unit 2: Deep feedforward networks Flashcards
Accuracy
The proportion of correct predictions
Error rate
The preportion of incorrect predictions
TPR
The True positive rate is the proportion of actual positives that are correctly predicted.
AKA Sensitivity
False positive rate
The proportion of actual negatives that are predicted as positive.
Receiver Operating Characteristic (ROC) curve
The True Positive Rate, against the False Positive rate, as a curve.
Recall
The actual positives classified correctly.
recall = TP / (TP + FN)
Precision
The proportion of predicted positives classified correctly
precision = TP / (TP + FP)
F-score
The harmonic mean of precision and recall.
F = 2 x (precision x recall) / (precision + recall)
Why use a harmonic mean for the F-score?
To penalise situations where either the precision or recall are low.
Balanced accuracy
The mean of the recall values for each class.