-
Notifications
You must be signed in to change notification settings - Fork 48
/
m_yaap.c
60 lines (54 loc) · 1.89 KB
/
m_yaap.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
/*
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_yaap(const EPI * epi, const REL_INFO * rel_info,
const RESULTS * results, const TREC_MEAS * tm, TREC_EVAL * eval);
/* See trec_eval.h for definition of TREC_MEAS */
TREC_MEAS te_meas_yaap = { "yaap",
" Yet Another Average Precision\n\
Adaptation of MAP proposed by Stephen Robertson to get a value\n\
that is more globally averagable than MAP. Should be monotonic with\n\
MAP on a single topic, but handles extreme values better.\n\
log ((1 + sum_probrel) / (1 + num_rel - sum_probrel))\n\
where sum_probrel = sum over all rels of (numrel_before_it / current rank)\n\
Cite: 'On Smoothing Average Precision', Stephen Robertson.\n\
ECIR 2012, LNCS 7224, pp.158-169. 2012.\n\
Edited by R.Baeza-Yates et al. Springer-Verlag Berlin\n",
te_init_meas_s_double,
te_calc_yaap,
te_acc_meas_s,
te_calc_avg_meas_s,
te_print_single_meas_s_double,
te_print_final_meas_s_double,
NULL, -1
};
static int
te_calc_yaap(const EPI * epi, const REL_INFO * rel_info,
const RESULTS * results, const TREC_MEAS * tm, TREC_EVAL * eval)
{
RES_RELS res_rels;
double sum;
long rel_so_far;
long i;
if (UNDEF == te_form_res_rels(epi, rel_info, results, &res_rels))
return (UNDEF);
rel_so_far = 0;
sum = 0.0;
for (i = 0; i < res_rels.num_ret; i++) {
if (res_rels.results_rel_list[i] >= epi->relevance_level) {
rel_so_far++;
sum += (double) rel_so_far / (double) (i + 1);
}
}
eval->values[tm->eval_index].value =
log((1.0 + sum) / (1.0 + (double) res_rels.num_rel - sum));
return (1);
}