-
Notifications
You must be signed in to change notification settings - Fork 48
/
m_recall.c
77 lines (68 loc) · 2.59 KB
/
m_recall.c
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
Copyright (c) 2008 - Chris Buckley.
Permission is granted for use and modification of this file for
research, non-commercial purposes.
*/
#include "common.h"
#include "sysfunc.h"
#include "trec_eval.h"
#include "functions.h"
#include "trec_format.h"
static int
te_calc_recall(const EPI * epi, const REL_INFO * rel_info,
const RESULTS * results, const TREC_MEAS * tm, TREC_EVAL * eval);
static long long_cutoff_array[] = { 5, 10, 15, 20, 30, 100, 200, 500, 1000 };
static PARAMS default_recall_cutoffs = {
NULL, sizeof(long_cutoff_array) / sizeof(long_cutoff_array[0]),
&long_cutoff_array[0]
};
/* See trec_eval.h for definition of TREC_MEAS */
TREC_MEAS te_meas_recall = { "recall",
" Recall at cutoffs\n\
Recall (relevant retrieved / relevant) measured at various doc level\n\
cutoffs in the ranking. If the cutoff is larger than the number of docs\n\
retrieved, then it is assumed nonrelevant docs fill in the rest.\n\
REcall is a fine single topic measure, but does not average well.\n\
Cutoffs must be positive without duplicates\n\
Default param: -m recall.5,10,15,20,30,100,200,500,1000\n",
te_init_meas_a_double_cut_long,
te_calc_recall,
te_acc_meas_a_cut,
te_calc_avg_meas_a_cut,
te_print_single_meas_a_cut,
te_print_final_meas_a_cut,
(void *) &default_recall_cutoffs, -1
};
static int
te_calc_recall(const EPI * epi, const REL_INFO * rel_info,
const RESULTS * results, const TREC_MEAS * tm, TREC_EVAL * eval)
{
long *cutoffs = (long *) tm->meas_params->param_values;
long cutoff_index = 0;
long i;
RES_RELS res_rels;
long rel_so_far = 0;
if (UNDEF == te_form_res_rels(epi, rel_info, results, &res_rels))
return (UNDEF);
if (0 == res_rels.num_rel)
return (0);
for (i = 0; i < res_rels.num_ret; i++) {
if (i == cutoffs[cutoff_index]) {
/* Calculate previous cutoff threshold.
Note cutoffs guaranteed to be positive by init_meas */
eval->values[tm->eval_index + cutoff_index].value =
(double) rel_so_far / (double) res_rels.num_rel;
if (++cutoff_index == tm->meas_params->num_params)
break;
}
if (res_rels.results_rel_list[i] >= epi->relevance_level)
rel_so_far++;
}
/* calculate values for those cutoffs not achieved */
while (cutoff_index < tm->meas_params->num_params) {
eval->values[tm->eval_index + cutoff_index].value =
(double) rel_so_far / (double) res_rels.num_rel;
cutoff_index++;
}
return (1);
}