Eval
Aware · M81 · lesson 81 of 149 · queued
Preview — browse every lesson free. Enroll to mark lessons complete, open partner links and save your progress. Login & enroll →
📖
in this lesson

Four Evaluation Types

15 min

The Evaluation Taxonomy You Actually Need

A team ships a customer-facing chatbot. They measure BLEU scores and declare success. Three weeks later, support tickets spike, the bot is fluent but confidently wrong. They had one evaluation type covering one failure mode, and reality exposed the gap. Every AI evaluation method falls into one of four categories: automated, human, hybrid, and observational. Each has distinct strengths, costs, and blind spots. Teams that rely on just one type catch roughly half the quality issues that teams using all four detect. A 2025 survey of 340 ML teams found that only 6% systematically employed all four types, yet those teams were 2.3x more likely to catch critical failures before production. This lesson gives you a precise understanding of each type, when to deploy it, and how to combine them into a robust evaluation strategy.

Type 1: Automated Evaluation

Automated evaluation uses computational methods to score outputs without human involvement. It spans three sub-categories. Rule-based checks are deterministic: regex matching, JSON schema validation, word count constraints, blocklist filtering. They catch hard failures (format violations, safety triggers) with 100% precision on their defined scope. Statistical metrics compare outputs against references: BLEU, ROUGE, BERTScore, METEOR. These work well for tasks with clear ground truth (translation, summarization) but correlate poorly with human judgment on open-ended generation, BLEU's correlation with human quality ratings is often below 0.30. LLM-as-judge uses a language model to evaluate another model's outputs against a rubric. G-Eval and Prometheus demonstrated 0.75-0.85 correlation with human ratings on well-defined dimensions, making this the strongest automated approach for subjective quality.

| Sub-type | Latency | Cost per 1K evals | Best for |
|---|---|---|---|
| Rule-based | < 10ms | ~$0 | Format, safety constraints |
| Statistical | < 100ms | ~$0.01 | Reference-based tasks |
| LLM-as-judge | 1-5s | $0.50-5.00 | Subjective quality |

Type 2: Human Evaluation

Human evaluation is the gold standard for subjective quality, but only when executed rigorously. There are two tiers. Crowd evaluation uses trained annotators (via platforms like Scale AI, Surge, or Labelbox) to rate outputs on defined rubrics. Typical cost: $0.50-2.00 per judgment. Turnaround: hours to days. Quality depends entirely on annotator training and rubric clarity. Expert evaluation uses domain specialists: physicians for medical outputs, lawyers for legal, engineers for code. Cost: $5-50 per judgment. This is non-negotiable for high-stakes domains. The critical mistake teams make is treating human ratings as ground truth without measuring inter-rater reliability. If your Cohen's kappa is below 0.60, your rubric is ambiguous and your labels are unreliable. Run calibration sessions before every evaluation campaign: have all raters score the same 20 items, discuss disagreements, refine the rubric, then score another 20. Repeat until kappa exceeds 0.70.

Type 3: Hybrid Evaluation

Hybrid evaluation combines automated and human methods to get the scale of the former and the quality of the latter. The most effective pattern is cascade evaluation: automated methods handle the easy cases, human reviewers handle the hard ones. Step 1: Run automated checks to filter obvious failures (format violations, safety issues). Step 2: Use an LLM judge to score remaining outputs. Step 3: Route low-confidence judgments (scores near the decision boundary) to human reviewers. This typically sends 15-25% of outputs to humans while maintaining 95%+ agreement with full-human evaluation. A more sophisticated variant is active learning evaluation: use initial human labels to train a classifier that identifies which outputs are most informative to label next, reducing annotation cost by 40-60% while reaching the same reliability. The LMSYS Chatbot Arena uses a hybrid approach, automated Elo calculation on top of human pairwise preferences, demonstrating that hybrid methods can scale to millions of comparisons while preserving human judgment as the foundation.

Type 4: Observational Evaluation

Observational evaluation measures AI quality through real-world production signals rather than explicit scoring. This is the type most teams neglect, and it is the one that catches what the other three miss. Key signals include: user behavior (regeneration rate, copy/paste rate, thumbs up/down, session length), downstream outcomes (task completion rate, support ticket volume, revenue per interaction), and implicit feedback (edit distance between AI suggestion and what the user actually used, time-to-accept for code completions). The strength of observational evaluation is ecological validity. You are measuring real impact, not proxy scores. The weakness is confounding: if user satisfaction drops, is it the AI quality, the UI change you shipped the same week, or seasonal variation? You need controlled experiments (A/B tests) to isolate AI quality effects from other variables. Build dashboards that track observational metrics alongside your automated and human eval scores. When they diverge, automated scores improving but user satisfaction flat, you have found a gap in your evaluation framework.

What Each Type Misses

No single evaluation type is sufficient because each has systematic blind spots. Automated evaluation misses: novel failure modes not covered by existing rules, subjective quality dimensions like empathy or cultural appropriateness, context-dependent correctness (the same response can be excellent or terrible depending on conversation history). Human evaluation misses: rare events (you cannot manually review 10M outputs), consistency over time (rater drift), and latency requirements (human review takes hours, production needs milliseconds). Hybrid evaluation misses: edge cases that fall outside both the automated filter and the human routing criteria. It also inherits calibration challenges, if your automated and human scores disagree, which do you trust? Observational evaluation misses: quality issues that users tolerate but that still matter (subtle factual errors users do not notice), problems in low-traffic segments, and anything where the feedback loop is slow (health advice quality may take months to manifest in outcomes).

Choosing Your Evaluation Mix

Use this decision tree to determine your evaluation mix based on five factors.

1. What quality dimension? Hard constraints (format, safety, factual accuracy with ground truth) → automated. Subjective quality (helpfulness, tone, creativity) → human or LLM-as-judge. Business impact → observational.

2. What scale? Under 1K outputs/month → human is feasible. 1K-100K → hybrid. Over 100K → automated primary with human sampling.

3. What budget? Under $10K/year → automated + observational only. $10K-100K → add hybrid. Over $100K → all four types.

4. What stakes? Low stakes (content recommendations) → automated + observational. High stakes (medical, legal, financial) → mandatory expert human evaluation regardless of scale.

5. What feedback speed? Real-time (< 1s) → automated only. Batch (daily) → hybrid. Strategic (monthly) → all four including observational.

The ideal is triangulation: use at least three types and investigate whenever they disagree.

The Four-Layer Evaluation Stack

Here is a concrete implementation pattern used by production AI teams. Layer 1 - Gate checks (automated, real-time): Every output passes through deterministic validators before reaching the user. Format checks, safety filters, length limits, blocklist matching. Outputs that fail are blocked or regenerated. Cost: near zero. Layer 2 - Quality scoring (automated, near-real-time): An LLM judge scores a sample of outputs (10-100%) on your key quality dimensions. Scores feed dashboards and alerting. Layer 3 - Human audit (hybrid, daily-weekly): Human reviewers evaluate outputs flagged by Layer 2 (low-confidence scores, near-boundary decisions) plus a random sample for calibration. Review 200-500 outputs per week. Layer 4 - Impact measurement (observational, weekly-monthly): Track user behavior metrics, A/B test results, and business outcomes. Correlate with Layers 2-3 to validate that your quality scores predict real-world impact. Run a monthly 'evaluation review' where you examine all four layers together and investigate discrepancies.

Five Mistakes That Undermine Multi-Type Evaluation

Even teams that use multiple evaluation types often make critical errors. Mistake 1: Treating automated and human as interchangeable. They measure different things. BLEU can be 0.45 while human ratings are 4.5/5. This is not contradictory, it means your task does not have a single correct reference. Mistake 2: Not calibrating across types. If your LLM judge gives 4.2/5 and your human raters give 3.1/5 on the same outputs, you need to understand why before combining scores. Mistake 3: Observational metrics without baselines. A 78% task completion rate means nothing without knowing the pre-AI baseline or a control group. Mistake 4: Over-indexing on agreement between types. When automated and human evaluations agree perfectly, it may mean the automated evaluation is measuring something simple that humans also catch, while both miss the hard cases. Mistake 5: Evaluating once and forgetting. Evaluation is not a milestone. It is a continuous process. Models change, user needs evolve, data distributions shift. Your evaluation framework needs to evolve with them.

Try This Now

Map your current evaluation coverage. Draw a 2x2 grid with four quadrants labeled Automated, Human, Hybrid, and Observational. For each quadrant, answer: (1) Do you use this type? Yes/No. (2) What specific methods? List them. (3) How frequently do you run them? (4) What quality dimensions do they cover? Now identify gaps. If you have only one or two quadrants filled, pick the most impactful missing type and design a minimal implementation. For most teams, the biggest gap is observational. You are evaluating outputs in isolation but not tracking whether your AI system actually helps users accomplish their goals. Start with three observational metrics: regeneration rate (what percentage of outputs do users reject and regenerate), edit distance (how much do users modify AI suggestions), and task completion rate (do users finish what they started).

Key Takeaways

The four evaluation types, automated, human, hybrid, and observational, are not alternatives to choose between; they are complementary layers of a complete evaluation strategy. Automated evaluation gives you scale and speed but misses subjective quality. Human evaluation gives you ground truth but cannot scale. Hybrid evaluation bridges the gap through intelligent routing. Observational evaluation connects offline quality scores to real-world impact. Use the decision framework to determine your mix based on quality dimension, scale, budget, stakes, and feedback speed. Build a four-layer evaluation stack: gate checks, quality scoring, human audit, and impact measurement. Investigate every discrepancy between layers, that is where your most valuable evaluation insights hide. Start by mapping your current coverage and filling the biggest gap.