-
Notifications
You must be signed in to change notification settings - Fork 48
/
meas_avg.c
87 lines (76 loc) · 2.59 KB
/
meas_avg.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
78
79
80
81
82
83
84
85
86
87
/*
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"
/* Generic procedures for calculating averages of measures, see trec_eval.h
typedef struct trec_meas {
...
* Calculate final averages (if needed) from summary info *
int (* calc_average) (const EPI *epi, const struct trec_meas *tm,
const TREC_EVAL *eval);
...
} TREC_MEAS;
Measures are defined in measures.c.
*/
/* Measure does not require averaging */
int
te_calc_avg_meas_empty(const EPI * epi, const TREC_MEAS * tm,
const ALL_REL_INFO * all_rel_info, TREC_EVAL * eval)
{
return (1);
}
/* Measure is a single double/long that should now be averaged */
int
te_calc_avg_meas_s(const EPI * epi, const TREC_MEAS * tm,
const ALL_REL_INFO * all_rel_info, TREC_EVAL * accum_eval)
{
long num_queries = accum_eval->num_queries;
if (epi->average_complete_flag)
num_queries = all_rel_info->num_q_rels;
if (num_queries)
accum_eval->values[tm->eval_index].value /= num_queries;
return (1);
}
/* Measure is an array with cutoffs */
int
te_calc_avg_meas_a_cut(const EPI * epi, const TREC_MEAS * tm,
const ALL_REL_INFO * all_rel_info,
TREC_EVAL * accum_eval)
{
long i;
long num_queries = accum_eval->num_queries;
if (epi->average_complete_flag)
num_queries = all_rel_info->num_q_rels;
if (num_queries) {
for (i = 0; i < tm->meas_params->num_params; i++) {
accum_eval->values[tm->eval_index + i].value /= num_queries;
}
}
return (1);
}
/* Measure is a single double with no parameters to be averaged with
geometric mean */
int
te_calc_avg_meas_s_gm(const EPI * epi, const TREC_MEAS * tm,
const ALL_REL_INFO * all_rel_info, TREC_EVAL * accum_eval)
{
double sum;
long num_queries = accum_eval->num_queries;
if (epi->average_complete_flag)
num_queries = all_rel_info->num_q_rels;
if (num_queries > 0) {
sum = accum_eval->values[tm->eval_index].value;
if (epi->average_complete_flag)
/* Must patch up averages for any missing queries, since */
/* value of 0 means perfection */
sum += (num_queries - accum_eval->num_queries) * log(MIN_GEO_MEAN);
accum_eval->values[tm->eval_index].value =
exp((double) (sum / num_queries));
}
return (1);
}