forked from quark0/TOP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheval.py
44 lines (42 loc) · 1.39 KB
/
eval.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import sys
def getRankedLists(fileName):
scoreLists = {}
for line in open(fileName):
pair = line.split()
q = pair[0]
doc = pair[1]
score = float(pair[2])
if q not in scoreLists:
scoreLists[q] = [[],[]]
scoreLists[q][0].append(doc)
scoreLists[q][1].append(score)
rankedLists = {}
for q in scoreLists:
scores, docs = zip(*sorted(zip(scoreLists[q][1],scoreLists[q][0]), reverse=True))
rankedLists[q] = docs
return rankedLists
if __name__ == '__main__':
if len(sys.argv) < 3:
sys.exit('Usage: %s ground_truth prediction' % sys.argv[0])
predicted = getRankedLists(sys.argv[2])
relavenceLists = {}
for line in open(sys.argv[1]):
pair = line.split()
q = pair[0]
if int(pair[2])== 1:
if q not in relavenceLists:
relavenceLists[q] = []
relavenceLists[q].append(pair[1])
aps = []
for q in relavenceLists:
lhat = predicted[q]
ltruth = relavenceLists[q]
correct = 0.0
sum_precision = 0.0
for pos in range(len(lhat)):
if lhat[pos] in ltruth:
correct = correct + 1
sum_precision = sum_precision + correct/(pos+1)
aps.append(sum_precision/len(ltruth))
print "Q:", q, '\tAP:', sum_precision/len(ltruth)
print "MAP =", sum(aps)/len(aps)