-
Notifications
You must be signed in to change notification settings - Fork 89
Evaluation Measures
faridani edited this page Jan 24, 2012
·
4 revisions
There should be a folder called "evaluation"
It will contain functions for the following measures (see page 268 of Manning Schutze)
- Precision
- Recall
- F-measure
- Fallout
- Accuracy
- Precision = tp/(tp+fp)
- Recall = tp/(tp+fn)
- F-measure: F = 1/(alpha*(1/p)+(1-alpha)*(1/R)) in which P is precision and R is recall. alpha is a value often should be solicited from user (0.5 by default)
- Fallout = fp/(fp+tn)