Grading a Test With No Clear Right Answer

September 9, 2026 · Part 6 of 20

Opening Scene

Some parts of a driving test aren’t pass or fail at all. Judging how smoothly a student handles a parallel park isn’t a binary — it’s a matter of degree. Nudging the curb slightly is a small miss. Hitting it outright is a bigger one. A perfectly smooth execution is the ideal, and everything else falls somewhere on a continuum of “how far off” rather than a clean right-or-wrong.

That continuum — grading by distance from ideal rather than a binary correct or incorrect — is exactly how evaluating a regression model works, echoing the classification-versus-regression distinction covered elsewhere in this content library’s machine learning material.

In Plain English

When a model predicts a number rather than a category — a price, a delivery time, a score — evaluation can’t be a simple “right or wrong.” Instead, metrics like mean absolute error (the average size of the gap between prediction and reality) or root mean squared error (a similar idea that penalizes larger misses more heavily) measure how far off predictions typically are. Neither is inherently “correct” — they represent different judgment calls about which kinds of mistakes should be considered worse.

The Old Way

Before formal regression metrics existed, people judged “how far off” performance constantly, without naming it formally:

  • A weather forecaster judged by how close their temperature predictions typically land, not by a binary “correct” or “wrong.”
  • An archer judged by how close arrows land to the bullseye on average, not by a simple hit-or-miss.
  • A tailor judged by how close a garment’s measurements come to the target, not a binary pass or fail on fit.

In each case, the meaningful question was always “how far off, typically,” not “right or wrong.”

What’s Changing (and Why AI Is the Reason)

  1. Choosing between metrics like mean absolute error and root mean squared error is increasingly informed by understanding the real cost structure of different-sized mistakes, rather than defaulting to whichever metric a tool happens to report first.
  2. Tooling can now visualize the full distribution of prediction errors easily, not just a single summary statistic, making it much easier to spot whether a model is consistently a little off versus occasionally wildly wrong.
  3. As regression models feed more automated decisions, the choice of evaluation metric increasingly shapes real business outcomes directly — a metric that heavily penalizes large misses will train a genuinely different model than one that treats all misses proportionally.

The Metaphor, Fully Extended

Driving TestRegression Metric Concept
A parallel park graded by smoothness, not pass/failA regression task, predicting a number, not a category
A small nudge of the curbA small prediction error
Hitting the curb outrightA large prediction error
Averaging how close students typically come to a perfect parkMean absolute error — the average size of prediction misses
Penalizing a hard hit on the curb more than a light nudgeRoot mean squared error — penalizing larger misses more heavily
An examiner choosing which kind of miss matters more to grade harshlyChoosing an evaluation metric based on real-world cost of different error sizes

For Beginners: What to Actually Do

  • For any regression model, understand what the chosen error metric is actually measuring, and why that particular metric was chosen over an available alternative.
  • Look at the full distribution of prediction errors, not just a single summary number — a model with a good average error can still have some genuinely bad individual misses worth understanding.
  • Get comfortable with the idea that there’s no single “correct” regression metric — the right choice depends on how different-sized errors actually matter for your specific use case.

For Practitioners and Leaders: The Deeper Layer

  • Choose a regression evaluation metric deliberately, based on the real cost structure of different-sized errors for your specific business problem, not by default convention alone.
  • Communicate the chosen metric’s practical meaning to stakeholders in plain terms — “off by an average of X” is more useful to most audiences than an abstract statistical name.
  • Revisit whether the chosen metric still reflects real business priorities as those priorities shift over time; a metric chosen years ago may no longer weigh error sizes the way the business actually cares about now.

Quick Recap

  • Regression evaluation measures how far off predictions typically are, not a binary right or wrong.
  • This mirrors familiar continuous judgments — forecasting, archery, tailoring — graded by closeness to an ideal, not a pass/fail.
  • Different metrics represent different judgment calls about which error sizes matter most, and should be chosen deliberately.
  • Looking at the full distribution of errors, not just a summary statistic, reveals real patterns a single number can hide.

Where This Fits in the Series

Article 5 covered the two kinds of mistakes in classification; this article covered the parallel question for regression tasks. Article 7 looks at a subtler evaluation risk — an examiner who’s also the instructor, quietly biasing their own grading.