1
0

Make the mathematics a bit more readable

This commit is contained in:
Jip J. Dekker 2018-05-25 17:56:36 +10:00
parent 640002813d
commit 67708259da

View File

@ -260,7 +260,7 @@
To evaluate the performance of the models, we record the time taken by
each model to train, based on the training data and the accuracy with which
the model makes predictions. We calculate accuracy as
\(a = \frac{|correct\ predictions|}{|predictions|} = \frac{tp + tn}{tp + tn + fp + fn}\)
\[a = \frac{|correct\ predictions|}{|predictions|} = \frac{tp + tn}{tp + tn + fp + fn}\]
where \(tp\) is the number of true positives, \(tn\) is the number of true
negatives, \(fp\) is the number of false positives, and \(tp\) is the number
of false negatives.