Scores
April 6, 2026 ยท View on GitHub
This file documents the short metric sub-labels used in Evalution score keys.
Metric keys use a compact comma-separated shape:
<metric_family>,<score_variant>
Examples:
acc,llacc,ll_avgacc,examacc,numacc,label_perm:0.25em,choice_labelf1,ll_avg_macropct_stereotypell_diffmcc,ll_avg
Metric Key Glossary
acc: accuracy-like credit on a0.0to1.0scale for each sample, then averaged.ll: raw summed continuation log-likelihood over the scored answer tokens.ll_avg: average continuation log-likelihood per scored answer token to reduce length bias.exam: ARC exam-style tie-aware partial credit.num: numeric-answer match after numeric extraction and canonicalization.em: exact match after the suite's task-specific extraction step.pct_stereotype: fraction of minimal pairs where the more stereotypical sentence receives the higher score.ll_diff: average absolute log-likelihood gap between paired candidate sentences.choice_label: extracted option-label match such asA/B/C/D.label_perm:<fraction>: permutation-averaged label-only accuracy using the configured fraction of all label permutations.f1: F1 score derived from the suite's predicted labels.mcc: Matthews correlation coefficient derived from the suite's predicted labels.macro: macro-average across labels rather than a single positive class.boolean: positive-class metric using the suite's positive boolean label.
Notes
llandll_avgdiffer only in how answer choice scores are normalized.llsums token log probabilities.ll_avgdivides by the number of scored answer tokens to reduce bias toward shorter options.label_perm:<fraction>is opt-in and additive. It does not replace the suite's default benchmark score.- In keys like
f1,ll_avg_boolean, thebooleansuffix is not part ofll_avg. It states which class the F1 is computed for. - Some suites expose only one metric family. For example, ARC uses
acc,exam, GSM8K usesacc,num, and MMLU-Pro usesem,choice_label.
For scorer-module layout, benchmark-specific scoring comments, and the label permutation math, see scorers.md.