Skip to content

Commit 6c7c54d

Browse files
committed
Including all recall points.
1 parent aeb7217 commit 6c7c54d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Evaluator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ def ElevenPointInterpolatedAP(rec, prec):
329329
# For each recallValues (0, 0.1, 0.2, ... , 1)
330330
for r in recallValues:
331331
# Obtain all recall values higher or equal than r
332-
argGreaterRecalls = np.argwhere(mrec[:-1] >= r)
332+
argGreaterRecalls = np.argwhere(mrec[:] >= r)
333333
pmax = 0
334334
# If there are recalls above r
335335
if argGreaterRecalls.size != 0:

0 commit comments

Comments
 (0)