aggregate metric

Mean absolute error

Σ |predicted_i − gold_i| / n

Mean absolute error measures, for graded rubrics, how far the evaluator's level is from the gold level on average. A judge that is often off by one level has MAE near 1; a judge that is right or badly wrong can have the same accuracy but a worse MAE.

how it is computed

From results to a number

For each Score case, take |expected level − gold level|; average. The jeval benchmark reports it in rubric-level units per judge.

inputs

Per-item predicted levels (or expected levels) and gold levels on the same scale.

live · 12 rubric cases on a 0–4 scale
gold level judge's expected levelMAE 0.28 levelsaccuracy ±1 100%
when to use it

Reach for it when

  • Comparing judges on 0–4 rubrics: it rewards being close, unlike accuracy.
  • Detecting systematic bias (always one level generous) when combined with the signed mean error.

Not the right number when

  • Categorical outputs with no order (use accuracy or kappa).
  • Probabilities (use Brier).

Watch out for

  • Only meaningful when both sides use the same scale; do not compare MAE across 0–3 and 0–4 rubrics.
  • Outliers matter less than in RMSE; if catastrophic misses matter, report both.
feeds from

Evaluators that produce this

related metrics
questions people ask
Is a lower MAE always better?
Yes. Zero means every judgment landed on the gold level. The benchmark shows MAE next to accuracy because two judges with the same accuracy can differ a lot in how far off they are when wrong.