Spaces:
Runtime error
Runtime error
/* | |
Copyright (c) 2008 - Chris Buckley. | |
Permission is granted for use and modification of this file for | |
research, non-commercial purposes. | |
*/ | |
static int | |
te_calc_map (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_map = {"map", | |
" Mean Average Precision\n\ | |
Precision measured after each relevant doc is retrieved, then averaged\n\ | |
for the topic, and then averaged over topics (if more than one).\n\ | |
This is the main single-valued number used to compare the entire rankings\n\ | |
of two or more retrieval methods. It has proven in practice to be useful\n\ | |
and robust.\n\ | |
The name of the measure is unfortunately inaccurate since it is \n\ | |
calculated for a single topic (and thus don't want both 'mean' and\n\ | |
'average') but was dictated by common usage and the need to distiguish\n\ | |
map from Precision averaged over topics (I had to give up my attempts to\n\ | |
call it something else!)\n\ | |
History: Developed by Chris Buckley after TREC 1.\n\ | |
Cite: 'Retrieval System Evaluation', Chris Buckley and Ellen Voorhees.\n\ | |
Chapter 3 in TREC: Experiment and Evaluation in Information Retrieval\n\ | |
edited by Ellen Voorhees and Donna Harman. MIT Press 2005\n", | |
te_init_meas_s_float, | |
te_calc_map, | |
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_map (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); | |
} | |
} | |
/* Average over the rel docs */ | |
if (rel_so_far) { | |
eval->values[tm->eval_index].value = | |
sum / (double) res_rels.num_rel; | |
} | |
return (1); | |
} | |