Tuesday, August 30, 2011

8/30/2011

IR systems are evaluated by finding the Precision and Recall.

Precision = tp/(tp+fp) 
Recall = tp/(tp+fn)

where,
tp = true positives
fp = false positives
fn = false negatives

-Bharath