forked from usnistgov/trec_eval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
m_set_P.c
51 lines (44 loc) · 1.44 KB
/
m_set_P.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
/*
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_set_P (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_set_P =
{"set_P",
" Set Precision: num_relevant_retrieved / num_retrieved \n\
Precision over all docs retrieved for a topic.\n\
Was known as exact_prec in earlier versions of trec_eval\n\
Note: trec_eval -m P.50 ...\n\
is different from \n\
trec_eval -M 50 -m set_P ...\n\
in that the latter will not fill in with nonrel docs if less than \n\
50 docs retrieved\n",
te_init_meas_s_float,
te_calc_set_P,
te_acc_meas_s,
te_calc_avg_meas_s,
te_print_single_meas_s_float,
te_print_final_meas_s_float,
NULL, -1};
static int
te_calc_set_P (const EPI *epi, const REL_INFO *rel_info, const RESULTS *results,
const TREC_MEAS *tm, TREC_EVAL *eval)
{
RES_RELS res_rels;
if (UNDEF == te_form_res_rels (epi, rel_info, results, &res_rels))
return (UNDEF);
if (res_rels.num_ret)
eval->values[tm->eval_index].value =
(double) res_rels.num_rel_ret /
(double) res_rels.num_ret;
return (1);
}