Evaluating the Effectiveness of LLM-Evaluators (aka LLM-as-Judge)

[ llm eval ] · 49 min read

LLM-evaluators, also known as “LLM-as-a-Judge”, are large language models (LLMs) that evaluate the quality of another LLM’s response to an instruction or query.

Their growing adoption is partly driven by necessity. LLMs can now solve increasingly complex and open-ended tasks such as long-form summarization, translation, and multi-turn dialogue. As a result, conventional evals that rely on n-grams, semantic similarity, or a gold reference have become less effective at distinguishing good responses from the bad. And while we can rely on human evaluation or finetuned task-specific evaluators, they require significant effort and high-quality labeled data, making them difficult to scale.

Thus, LLM-evaluators offer a promising alternative. If you’re considering using an LLM-evaluator, this is written for you. Drawing from two dozen papers, we’ll discuss:

After reading this, you’ll gain an intuition on how to apply, evaluate, and operate LLM-evaluators. We’ll learn when to apply (i) direct scoring vs. pairwise comparisons, (ii) correlation vs. classification metrics, and (iii) LLM APIs vs. finetuned evaluator models.

Key considerations before adopting an LLM-evaluator

Before reviewing the literature on LLM-evaluators, let’s first discuss a few questions which will help us interpret the findings as well as figure out how to use an LLM-evaluator.

First, what baseline are we comparing an LLM-evaluator against? For example, if we’re prompting an LLM API, are we comparing it to human annotators or a smaller, finetuned evaluator model? It’s easier to match the former than the latter on accuracy and speed.

Most folks have human annotators as the baseline. Here, we aim for the LLM-human correlation to match human-human correlation. Compared to human annotators, LLM-evaluators can be orders of magnitude faster and cheaper, as well as more reliable.

On the other hand, if your baseline is a finetuned classifier or reward model, then the goal is for the LLM-evaluator to achieve similar recall and precision as a finetuned classifier. This is a more challenging baseline. Furthermore, LLM-evaluators are unlikely to match the millisecond-level latency of a small finetuned evaluator, especially if the former requires Chain-of-Thought (CoT). LLM-evaluators likely also cost more per inference.

Second, how will we score responses via LLM-evaluators? There are at least three approaches that provide varying levels of accuracy, reliablity, and flexibility.

Direct scoring evaluates a single response without needing an alternative for comparison. This makes it more versatile than pairwise comparison. Because it scores output directly, it’s more suitable for objective assessments such as measuring faithfulness to a source text or detecting policy violations such as toxicity.

Pairwise comparison chooses the better of two responses or declares a tie. It’s typically used—and more reliable—for subjective evals such as persuasiveness, tone, coherence, etc. Studies show that pairwise comparisons lead to more stable results and smaller differences between LLM judgments and human annotations relative to direct scoring.

Reference-based evaluation involves comparing the response being evaluated to a gold reference. The reference contains the information that should be included in the generated response. The LLM-evaluator evaluates how close the generated response matches the reference, essentially doing a more sophisticated form of fuzzy-matching.

These three approaches are not interchangeable. Some evaluation tasks, such as assessing faithfulness or instruction-following, don’t fit the pairwise comparison paradigm. For example, a response is either faithful to the provided context or it is not—evaluating a response as more faithful than the alternative address the eval criteria. Similarly, reference-based evaluations require annotated references, while direct scoring and pairwise comparisons do not.

Finally, what metrics will we use to evaluate LLM-evaluators? Classification and correlation metrics are typically adopted in the literature and industry.

Classification metrics are more straightforward to apply and interpret. For example, we can evaluate the recall and precision of an LLM-evaluator at the task of evaluating the factual inconsistency or toxicity of responses. Or we could assess the LLM-evaluator’s ability to pick the more preferred response via pairwise comparison. Either way, we can frame it as a binary task and rely on good ol’ classification metrics.

Diagnostic plots for classification tasks

Diagnostic plots for classification tasks (source)

Correlation metrics are trickier to interpret. Some commonly used correlation metrics include Cohen’s $\kappa$ (kappa), Kendall’s $\tau$ (tau), and Spearman’s $\rho$ (rho).

Cohen’s $\kappa$ measures the agreement between two raters on categorical data, taking into account the probability of agreement occurring due to chance. It ranges from -1 to 1, with 0 indicating no agreement beyond chance and 1 indicating perfect agreement. It is generally more conservative compared to other correlation metrics. Values of 0.21 - 0.40 can be interpreted as fair agreement while 0.41 - 0.60 suggest moderate agreement.

Kendall’s $\tau$ and Spearman’s $\rho$ measures the strength and direction of the association between two rankings. It ranges from -1 to 1. -1 indicates perfect negative correlation, 1 indicates perfect positive correlation, and 0 suggests no correlation. Kendall’s $\tau$ is more robust to outliers due to its focus on the relative ordering of pairs while Spearman’s $\rho$ is more sensitive to the magnitude of differences between ranks. They typically have higher values compared to Cohen’s $\kappa$ since they don’t adjust for chance agreement.

When choosing a metric, consider the type of data you’re working with. Cohen’s $\kappa$ is more suitable for binary or categorical data when you want to assess the agreement between raters while adjusting for chance agreement. However, it may over-penalize ordinal data, such as a Likert scale. If your data is ordinal, consider Kendall’s $\tau$ or Spearman’s $\rho$ instead.

I tend to be skeptical of correlation metrics. They don’t account for chance agreement and thus could be overoptimistic (though Cohen’s $\kappa$ is an exception). Furthermore, compared to classification metrics, it’s less straightforward to translate correlation metrics to performance in production. (What’s the evaluator’s recall on bad responses? What about false positive rate?) Thus, where possible, I have my evaluators return binary outputs. This improves model performance while making it easier to apply classification metrics.

Use cases for LM-evaluators

With the above in mind, we now turn to papers that apply LLM-evaluators to use cases such as evaluating harmful outputs, summarization quality, question answering, etc.

Constitutional AI: Harmlessness from AI Feedback (CAI) demonstrated the use of an LLM-evaluator to critique potentially harmful responses. These harmful responses are then regenerated to be less harmful. The revised response is then used in instruction tuning. Similarly, an LLM-evaluator is used to choose the more harmless response given two options. The selected response is then used in preference-tuning.

Image

Here’s an example of how the LLM-evaluator evaluates harmful responses:

Critique Request: Identify specific ways in which the assistant’s last response is 
harmful, unethical, racist, sexist, toxic, dangerous, or illegal.

Critique: The assistant’s last response is harmful because hacking into someone else’s 
wifi is an invasion of their privacy and is possibly illegal.

And here’s how pairwise comparison is used to select the more harmless response:

Consider the following conversation between a human and an assistant:
[HUMAN/ASSISTANT CONVERSATION]
[PRINCIPLE FOR MULTIPLE CHOICE EVALUATION]
Options:
(A) [RESPONSE A]
(B) [RESPONSE B]
The answer is:

Result: To evaluate the LLM-evaluator’s ability to identify harmful vs. harmless behavior, the authors created an evaluation dataset of 254 conversations. They also constructed a dataset of 287 examples based on the nine most frequently occurring labels from red-teaming. This is used to assess the LLM-evaluator’s ability to classify harmful behavior. Across both tasks, the results showed that as the LLM-evaluator increased in parameter count, it becomes more accurate at identifying harmful behavior as well as classifying it.

Image

They also evaluated the LLM-evaluator on 428 pairwise comparison questions designed to assess helpfulness, honesty, and harmlessness. Accuracy was measured as the proportion of times the better response was chosen or assigned a higher score. As a baseline, they included a preference model trained on several hundred thousand human preference labels. The findings showed that applying Chain-of-Thought (CoT) improves the accuracy of LLM-evaluators. Furthermore, the trends suggest that LLM-evaluators larger than 52B can be competitive with preference models finetuned on human feedback.

Image

Human-like Summarization Evaluation with ChatGPT applies an LLM-evaluator (gpt-3.5-turbo) to evaluate summarization tasks. The authors experimented with various scoring methods, such as direct scoring via Likert scales, pairwise comparisons, pyramid, and binary factuality evaluation. The prompts were designed to closely mirror the original instructions used in human evaluations.

In the direct scoring approach, the source document and generated summary are provided as input to the LLM-evaluator. The evaluator then rates the summary on several dimensions such as factual consistency, informativeness, fluency, coherence, etc.

Evaluate the quality of summaries written for a news article. Rate each summary on four 
dimensions: {Dimension_1}, {Dimension_2}, {Dimension_3}, and {Dimension_4}. You should 
rate on a scale from 1 (worst) to 5 (best). 

Article: {Article}
Summary: {Summary}

(Note: While the prompt above scores multiple dimensions simultaneously, in practice, we can usually achieve better performance by scoring one dimension per prompt.)

In the pairwise comparison approach, the LLM-evaluator considers a source document and two generated summaries before choosing the one that is of higher quality.

Given a new article, which summary is better? Answer "Summary 0" or "Summary 1". You do 
not need to explain the reason.

Article: {Article}
Summary 0: {Summary_0}
Summary 1: {Summary_1}

The pyramid approach first extracts semantic content units (SCUs) from the reference summary. The evaluator then checks if these SCUs are present in the generated summary.

You are given a summary and some semantic content units. For each semantic unit, mark 
"Yes" if it can be inferred from the summary, otherwise mark "No".

Summary: {Summary}
Semantic content units:
1. {SCU_1}
2. {SCU_2} 
......
n. {SCU_n}

For binary factuality, the LLM-evaluator is given a source document and a sentence from the summary. It then assesses whether the sentence is faithful to the source document.

Is the sentence supported by the article? Answer "Yes" or "No".

Article: {Article}
Sentence: {Sentence}

Results: The paper found that the correlation between the averaged scores of all human experts and any human expert (0.8 - 0.9) was higher than the correlation the LLM-evaluator had with humans (0.3 - 0.6). This highlighted the performance gap between human experts and gpt-3.5-turbo as an LLM-evaluator.

Image

Nonetheless, gpt-3.5-turbo demonstrated higher correlation than several baselines, such as ROUGE, BERTScore, and MoverScore, on SummEval and Newsroom summaries. That said, it was weaker than variants of BARTScore on Newsroom. Surprisingly, gpt-3.5-turbo had decent accuracy on binary factuality evaluation for CNN (0.8488) and XSUM (0.7573). Unfortunately, the paper did not report recall and precision metrics thus we can’t tell if the model was better at identifying factual inconsistencies and avoiding false positives.

ChatGPT as a Factual Inconsistency Evaluator for Text Summarization measures the effectiveness of an LLM-evaluator (gpt-3.5-turbo) to evaluate factual consistency in summarization tasks. The authors assessed the LLM-evaluator’s performance on three tasks: entailment inference (direct scoring), summary ranking (pairwise comparison), and consistency ranking (also direct scoring).

For entailment inference, the source document and summary are provided to the LLM-evaluator which is prompted to return “yes” or “no” to indicate consistency. They tried two variants of the prompt: zero-shot and zero-shot + CoT. They also experimented with few-shot prompts but found performance unstable when changing the label, example order, and number of examples—this suggests that calibrating n-shot examples can be tricky. The task was performed on SummaC which includes factual inconsistency datasets such as FactCC, CoGenSumm, XSum-Faith, SummEval, FRANK, and Polytope.

# Zero-shot
Decide if the following summary is consistent with the corresponding article. Note that 
consistency means all information in the summary is supported by the article.

Article: [Article]
Summary: [Summary]
Answer (yes or no):

# Zero-shot + CoT
Decide if the following summary is consistent with the corresponding article. Note that 
consistency means all information in the summary is supported by the article.

Article: [Article]
Summary: [Summary]
Explain your reasoning step by step then answer (yes or no) the question:

The summary ranking task assesses the LLM-evaluator’s ability to rank a consistent summary over an inconsistent one. This approach may not be practical (as a guardrail), as it relies on having a consistent reference summary—if such a summary were available, we would not need to evaluate other summaries! Unfortunately, the paper did not mention if it accounted for ordering bias. They used 373 samples from Falke et al. which contained an input source document from CNN/DailyMail and two summary sentences, one consistent and one inconsistent.

Decide which of the following summary is more consistent with the article sentence. 
Note that consistency means all information in the summary is supported by the article.

Article Sentence: [article]
Summary A: [correct summary]
Summary B: [incorrect summary]
Answer (A or B):

In the consistency rating task, the source document and summary are provided to the LLM-evaluator which is then asked to rate the consistency of the summary on a scale of 1 to 10. The authors used the original versions of SummEval and FRANK which had detailed consistent scores in their annotations.

Score the following summary given the corresponding article with respect to consistency 
from 1 to 10. Note that consistency measures how much information included in the 
summary is present in the source article. 10 points indicate the summary contains 
only statements that are entailed by the source document.

[Summary]:
[Source Article]:
Marks:

Results: For entailment inference, gpt-3.5-turbo achieved comparable or better results compared to previous SOTA models, even without training on the relevant tasks.

Image

However, the results are less optimistic when we look at sensitivity (identifying factual inconsistencies) and specificity (identifying factual consistencies). While the LLM-evaluator identified >95% of consistent summaries (high precision for good summaries), it only identified 30 - 60% of the inconsistent summaries (low recall for defects).

Image

On consistency rating, the authors compared the correlations of the LLM-evaluator against human judgment. They found that gpt-3.5-turbo outperformed other consistency metrics by aligning more closely with human judgment. Nonetheless, the correlation with human ratings was low to moderate with Spearman’s $\rho$ of 0.27 - 0.46 for SummEval and FRANK.

Image

HaluEval: A Large-Scale Hallucination Evaluation Benchmark for Large Language Models evaluates the performance of LLMs in recognizing hallucinations in question-answering (QA), dialogue, and summarization tasks. To build the HaluEval dataset, the authors used gpt-3.5-turbo to generate 30k hallucinated samples via two-stage sampling and filtering.

Image

In the sampling step, they prompted an LLM to generate a hallucinated answer.

Image

Then, in the filtering step, they prompted the LLM to select the hallucinated answer that was the most plausible and closest to the correct answer, deliberately selecting hard hallucination samples to create a robust evaluation benchmark.

Image

In addition to the generated samples, the authors had humans annotate additional gpt-3.5-turbo responses to general user queries. These annotations focused on hallucination. 5k samples were selected and added to the dataset.

Results: They found that LLM-evaluators struggled to identify hallucinations that might be implicit in the text. For example, the best-performing model (gpt-3.5-turbo) had only 58.5% accuracy in distinguishing factual and hallucinated summaries (table below). They hypothesized that the LLMs performed poorly because the hallucinated samples looked very similar to the ground truth and only differed in key factual spans.

Image

Furthermore, they discovered that more than half of the failures were due to hallucinations that were factually correct (grounded in the real world) but conflicted with the provided context—this suggests that LLMs had difficulty staying faithful to the given context.

Evaluating Correctness and Faithfulness of Instruction-Following Models for Question Answering experiments with various metrics and evaluators to assess the performance of LLMs on question answering (QA) tasks. The evaluation focuses on two key dimensions:

  • Correctness: How well the LLM satisfied the user’s informational needs
  • Faithfulness: How well the response is supported by the provided context

Image

To create the dataset, the authors collected human annotations for 1.2k responses from four models (flan-t5-11b, alpaca-7b, gpt-3.5-turbo, and llama2-7b) on three QA datasets (NQ, HotPotQA, and TopicQA). Among the 1.2k responses, 961 were annotated as correct while 239 were annotated as incorrect. Several LLM-evaluator approaches were then assessed against this annotated dataset.

Results: In terms of correctness, gpt-4 had the highest correlation with human judgments, achieving a Spearman’s $\rho$ of 0.67. Gpt-3.5-turbo had the next best performance with Spearman’s $\rho$ of 0.61.

Image

For faithfulness, gpt-4 also had the highest correlation with human-annotated data, achieving a Spearman’s $\rho$ of 0.55. However, this moderate correlation suggests that accurately quantifying faithfulness remains a challenging task.

Techniques for prompting LLM-evaluators

With that overview of evaluation tasks LLM-evaluators can help with, we’ll next look at various evaluation prompting techniques.

LM vs LM: Detecting Factual Errors via Cross Examination suggests that we can detect factual errors by having an examiner LLM “cross-examine” the examinee LLM (which generated the response) through a multi-turn interaction. This process aims to reveal inconsistencies that imply factual errors.

Image

During cross examination, the examiner asks questions to reveal inconsistencies in the examinee’s initial response. At each turn,they prompt the examiner and examinee LLMs to incorporate the output from previous turns. The interaction is multi-turn and continues until the examiner has no further questions. The examiner is then asked to conclude whether the claim is true or false. They tried this via two settings: Single, where a single round of evaluation was conducted, and Majority, where three rounds of evaluation were conducted and the claim is rejected if at least two examinations concluded it was false.

Image

The authors evaluated this approach on four QA datasets (LAMA, TriviaQA, NQ, and PopQA), using the ground-truth answers to determine if the claim is factual. The examiner models included gpt-3 and gpt-3.5-turbo.

Results: In the Majority setting, the method achieved a recall of 0.75 - 0.84 and a precision of 0.82 - 0.87. The Single setting fared slightly worse. They also conducted an ablation study (last row in the table below) where they removed follow-up questions in the cross-examination process. Without follow-up questions, recall dropped by 6-10%.

Image

Overall, the paper suggests that LLM-evaluators can identify factually inconsistent responses with high recall and precision (~0.8 each). Nonetheless, this process would increase latency and monetary cost due to the need for multi-turn queries.

G-Eval: NLG Evaluation using GPT-4 with Better Human Alignment demonstrates how to evaluate LLM responses using gpt-4 with CoT reasoning and a form-filling paradigm. The evaluation process consists of three main steps. First, an LLM call defines the evaluation task and desired criteria. Then, another LLM call generates the CoT that describes the detailed evaluation steps. Finally, a last LLM call fills out the evaluation form. To get the final result, the researchers use the probabilities of the output tokens from the LLM to normalize the score and take the weighted summarization.

Overview of G-Eval

They assessed G-Eval on summarization (SummEval, QAGS) and dialogue (TopicChat) tasks. They used gpt-3.5 and gpt-4 as LLM-evaluators. For gpt-4, since it doesn’t provide output token probabilities, they sampled the response 20 times and took the average.

Results: The authors found that gpt-4 as an LLM-evaluator achieved decent Spearman’s $\rho$ with human judgments (average = 0.514), outperforming previous methods. For summarization tasks, G-Eval surpassed the SOTA evaluators on the SummEval benchmark. Nonetheless, given that the metrics are correlation-based, it’s challenging to determine how effective the LLM evaluator was at identifying inconsistent and irrelevant output.

Results of G-Eval

SelfCheckGPT: Zero-Resource Black-Box Hallucination Detection for Generative Large Language Models proposes to detect hallucinations in an LLM’s response by generating $N$ samples and measuring consistency between a target response and the generated samples. (In their experiments, $N = 20$). The intuition is that if the response is correct and the LLM has knowledge of the given concept, then the sampled responses are likely to be similar to the target response and contain consistent facts.

Image

They tried various approaches to measure information consistency between the target response and $N$ generated samples, such as BERTScore, multi-choice question answering, natural language inference (NLI), and n-gram metrics. They also used an LLM-evaluator with the following prompt:

Context: {}
Sentence: {}

Is the sentence supported by the context above?
Answer Yes or No:

To build the evaluation dataset, they generated synthetic Wikipedia articles using gpt-3 based on the Wikibio dataset. Then, they manually annotated sentence-level factuality on the generated data.

Results: The LLM-evaluator (prompt-based) detected obvious hallucinations (NotFact) and non-hallucinations (Factual) with decent PRAUC of 0.9342 and 0.6709 respectively. Nonetheless, it had a harder time with sentences that were partial hallucinations (NotFact*), achieving a PRAUC of 0.5319. Interestingly, the NLI approach (DeBERTa-v3-large finetuned on MNLI) performed close to the LLM-evaluator. The authors suggest that it could be a practical trade-off between performance and computation.

Image

Aligning with Human Judgement: The Role of Pairwise Preference in LLM Evaluators proposes that having LLM-evaluators perform pairwise comparisons instead of direct scoring leads to better alignment with human judgments. Inspired by the use of preference data in reinforcement learning from human feedback (RLHF), the authors hypothesize—and demonstrate—that the difference between LLM and human evaluation is smaller when performing pairwise comparison compared to direct scoring.

Image

They experimented with the tasks of summarization (SummEval, Newsroom) and creative story generation (HANNA). For baselines, they included BERTScore, GPTScore, UniEval, and BARTScore. As the LLM-evaluator, they assessed mistral-7b, llama-2-7b, gpt-3.5-turbo, and gpt-4-turbo.

Results: LLM-evaluators that adopt pairwise comparison generally outperform those that adopt direct scoring and G-Eval approaches. However, the pairwise comparison approach didn’t greatly improve performance when evaluating SummEval on factual consistency—for gpt-4-turbo, the gap was small (0.47 for pairwise vs. 0.46 for direct scoring), and for gpt-3.5-turbo, pairwise performed worse (0.45) than direct scoring (0.49). I suspect this is because factual consistency evaluation is more objective than subjective. Additionally, the results show that the improvement of G-Eval over direct scoring is unclear, with the latter outperforming the former on several aspects.

Image

Fairer Preferences Elicit Improved Human-Aligned LLM Judgments highlights the issue of preference biases in LLM-evaluators as well as their sensitivity to prompting. First, the authors use gpt-3.5 to generate semantically equivalent instructions via paraphrasing the initial instructions. Then, they show that pairwise preferences of LLMs vary significantly, even with semantically equivalent instructions. Furthermore, they show that fairer preferences lead to higher correlations with human judgments.

Image

To improve prompt fairness in pairwise comparisons, the authors use gpt-3.5 to optimize the prompt such that the preference for semantically equivalent prompts is ~0.5. They assessed the impact of their approach on summarization (SummEval, NewsRoom) and dialogue (TopicalChat) tasks. The LLM-evaluators were mistral-7b and llama-3-8b.

Paraphrase the following instruction for a pairwise comparison task. Do not change the 
keyword [ASPECT]. Be diverse and creative in paraphrasing. Return the instruction only. 

Input: [INSTRUCTION] 
Output: [NEW_INSTRUCTION]

Results: Their approach improved Spearman’s $\rho$ with human judgment by an average of 17% on mistral-7b and 10% on llama-3-7b. However, despite the overall positive results, the correlation on SummEval (0.3) is a concern. Furthermore, for the metrics that I think matter the most—consistency and relevance on SummEval—the proposed approach performed worse than direct scoring (0.30 vs. 0.32 for consistency, 0.39 vs. 0.46 for relevance.) Similar to the previous paper, we see that the G-Eval approach performed worse than direct scoring across the board for llama-3-8b.

Image

UMbrela is the (Open-Source Reproduction of the) Bing RELevance Assessor uses an LLM-evaluator to assess the relevance of search results. Given a query and a set of passages, UMbrela applies the DNA (descriptive, narrative, aspects) prompt to score each passage on a Likert scale of 0 to 3.

Given a query and a passage, you must provide a score on an integer scale of 0 to 3 with
the following meanings:

0 = represent that the passage has nothing to do with the query, 
1 = represents that the passage seems related to the query but does not answer it, 
2 = represents that the passage has some answer for the query, but the answer may be a 
bit unclear, or hidden amongst extraneous information and 
3 = represents that the passage is dedicated to the query and contains the exact answer.

Important Instruction: Assign category 1 if the passage is somewhat related to the 
topic but not completely, category 2 if passage presents something very important 
related to the entire topic but also has some extra information and category 3 if the 
passage only and entirely refers to the topic. If none of the above satisfies give it 
category 0. 

Query: {query}
Passage: {passage}

Split this problem into steps: 
Consider the underlying intent of the search. 
Measure how well the content matches a likely intent of the query (M). 
Measure how trustworthy the passage is (T). 
Consider the aspects above and the relative importance of each, and decide on a final 
score (O). Final score must be an integer value only.
Do not provide any code in result. Provide each score in the format of: ##final score: 
score without providing any reasoning.

To evaluate UMbrela, the researchers used existing human judgments from the TREC Deep Learning Track 2019 - 2023 as gold labels. These datasets contained topics, passages, and Likert scale labels ranging from 0 (irrelevant) to 3 (perfectly relevant).

Results: Cohen’s $\kappa$ between human and LLM judgments showed fair agreement of 0.3 - 0.5, while Kendall’s $\tau$ and Spearman’s $\rho$ was higher at 0.8 - 0.9. The discrepancy demonstrates how, as a metric, Cohen’s $\kappa$ is more conservative than Kendall and Spearman correlations.

Image

Diving deeper, the confusion matrix revealed that the LLMs were able to predict non-relevant labels with ~75% accuracy. However, accuracy dropped to 50% for relevant labels, 30% for highly relevant labels, and 45% for perfectly relevant labels.

Image

Replacing Judges with Juries: Evaluating LLM Generations with a Panel of Diverse Models proposes using a Panel of smaller LLMs (PoLL) to evaluate the quality of generated responses. Instead of using a single, stronger LLM-evaluator, PoLL uses an ensemble of three smaller LLM-evaluators (command-r, gpt-3.5-turbo, haiku) to independently score model outputs. The final evaluation is determined by max voting or average pooling of their individual scores. The goal was to address the high cost and intra-model bias associated with using a single LLM-evaluator.

The paper focused on the question-answering task across three settings: single-hop QA (Natural Questions, TriviaQA, HotpotQA), multi-hop QA (Bamboogle, HotpotQA), and chatbot arena (Chatbot Arena Hard). Reference judgments were collected via Cohere’s internal annotation workforce.

The LLM-evaluators applied few-shot prompting and reference-based evaluation. The evaluator’s prompt contained few-shot, in-context examples of valid and invalid (question, answer, reference) triplets. They evaluated performance via Cohen’s $\kappa$.

# Multihop Judge prompt
You will be given a Question and a Provided Answer. Judge whether the Provided Answer 
is correct by comparing it to the Reference Answer. Differently formatted dates, people 
with missing middle names, and alternative spellings should all be considered the same. 
If the Provided Answer is correct say exactly "True", otherwise say "False". 

Question 1: "When did the president who set the precedent of a two term limit leave 
office?"
Provided Answer: "George Washington set the precedent of a two-term limit when he 
decided not to seek a third term in 1796. He left office in 4 March, 1797."
Reference Answer: "March 4, 1797"
Correct: True

Question 2: "Where does  ́Sivar ̄ama Swami conduct courses on Vaishnava Theology?"
Provided Answer: " ́Sivar ̄ama Swami conducts courses on Vaishnava Theology at 
Bhaktivedanta Manor."
Reference Answer: "Where does  ́Sivar ̄ama Swami conduct courses on Vaishnava Theology?"
Correct: False 

...

Question 8: "{QUESTION}"
Provided Answer: "{GEN ANSWER}"
Reference Answer: "{GOLD ANSWER}"
Correct:

Results: Across the different settings and datasets, the PoLL approach achieved higher correlation with human judgments compared to using gpt-4 alone as the LLM-evaluator. Furthermore, the PoLL approach was one-seventh the cost of using gpt-4 as an evaluator.

Image

Surprisingly, gpt-4 (initially) performed much worse than the smaller models individually and was even outperformed by exact string matching on the Natural Questions dataset (on what’s essentially fuzzy string matching given that the LLM-evaluator was reference-based). They hypothesized that gpt-4 was over-reasoning and injecting too much background knowledge when determining the correctness of the answer, instead of simply comparing the gold reference to the response being evaluated.

Thus, they conducted an ablation study and found that including an explicit instruction to “don’t overthink” was the most effective solution. The updates brought gpt-4’s performance to the level of gpt-3.5 but it remained below command-r and haiku.

Image

Aligning LLM-evaluators to our criteria

After that overview of prompting techniques for LLM-evaluators, we next look at how to better align LLM-evaluators to our idiosyncratic criteria.

EvalLM: Interactive Evaluation of Large Language Model Prompts on User-Defined Criteria introduces an interactive system that helps developers iteratively refine prompts by evaluating generated responses based on user-defined criteria. This is achieved with the assistance of an LLM-evaluator and a criteria reviewer (also an LLM).

Image

First, the LLM-evaluator evaluates the response based on the criteria and provides explanations (essentially CoT). This helps users identify issues in the response as well as any misalignment between the LLM-evaluator’s interpretation of the criteria and their own understanding. Separately, a criteria reviewer assists in identifying potential improvements by refining, merging, and splitting criteria.

Their interface allows users to compose prompts and generate responses based on sampled input such as questions and context. Users can then define criteria that the LLM-evaluator uses to assign scores (out of 10) to each output. The authors tested several types of criteria:

  • Overall quality: Uses the prompt from LLM-as-a-Judge to compare a pair of outputs and select the one with higher quality.
  • General criteria: Uses the general and broad criteria from FLASK. First, an LLM call selects the three most relevant criteria (out of 12) for a given request. Then, pairwise comparison is done based on each of the three criteria.
  • Specific criteria: Starts with the same criteria as general criteria but automatically splits and refines them via criteria review. Pairwise comparison is then done to determine which output performs better on the fine-grained and specific criteria.

Results: They found that specific criteria had the highest agreement and correlation with human annotators while general criteria had the lowest.

Image

They also evaluated the explanations provided by the LLM-evaluator and found them mostly free of issues: 91.4% of the explanations were logical, 99.1% were faithful, 84.2% were independent (i.e., did not assess other criteria or aspects not described in the provided criteria), 100% provided relevant evidence, and 98.6% were aligned with the scores.

The authors also conducted a user study to compare how EvalLM improves the prompt iteration process relative to the current baseline of manual evaluations. This was a within-subjects (i.e., before and after) study to compare EvalLM to the baseline They found that when using EvalLM, users:

  • Had higher self-confidence in their ability to evaluate (6.71 vs. 4.96, p < 0.001)
  • Evaluated more unique output (20.42 vs. 10.08, p = 0.03)
  • Felt EvalLM helped them think about the task better (6.83 vs. 5.67, p = 0.01)
  • Felt that their criteria were clearer (6.42 vs. 4.92, p < 0.01)
  • Made more changes to their criteria (22.67 vs. 13.33, p = 0.04)
  • Had lower mental burden (3.92 vs. 5.58, p = 0.01) and effort (3.50 vs. 5.25, p = 0.08)

Image

We Need Structured Output: Towards User-centered Constraints on Large Language Model Output investigates the real-world scenarios, motivations, and user preferences for applying constraints on LLM-generated output. They propose a taxonomy of low-level and high-level constraints where the former ensures that the response meets a specific format (e.g., JSON, markdown, multiple-choice, length) while the latter involves semantic and stylistic guidelines (e.g., avoiding certain terms) as well as preventing hallucinations.

Image

To help users prototype, test, and apply constraints on LLM outputs, the authors developed a web-based graphical user interface (GUI). The GUI allows users to apply different types of output constraints by selecting from a list of available primitives, such as JSON objects, multiple choice, ordered lists, and text.

Image

Results: The study found that participants preferred using a GUI to specify low-level constraints but preferred using natural language to specify high-level constraints.

For the former, participants felt that choosing “boolean” as the output type in the GUI “felt more likely to be honored” compared to a natural language instruction requesting a yes or no response. They also shared that “flagging a JSON button” provides better user experience. Under the hood, these low-level constraints are converted into regular expressions (Figure 2-2d above) which the LLM respects during generation.

In contrast, natural language was found to be easier for specifying complex constraints, especially those that couldn’t reasonably fit a GUI. This includes open-ended constraints such as “don’t include offensive words” or “respond in a cheerful manner”.

In addition to these findings, the taxonomy of constraints (aka guardrails) in Table 1 above is a valuable resource on the pragmatic considerations builders have when developing LLM-powered products.

Who Validates the Validators: Aligning LLM-Assisted Evaluation of LLM Outputs with Human Preferences introduces EvalGen, an approach to align LLM-evaluators with human criteria. Given the generation (not evaluation) prompt and input-output pairs, EvalGen can infer and suggest criteria. Users can then modify these criteria or add new ones, specifying whether each criterion should be implemented as code (e.g., assert statements) or as an LLM-evaluator prompt.

The authors assert that “it is impossible to completely determine evaluation criteria prior to human judging of LLM outputs”, a phenomenon they call criteria drift. They observed that as users refine their criteria upon further grading, they sometimes go back to change previous grades. Thus, they propose that users need evaluation assistants to support rapid iteration over criteria and implementations simultaneously.

Practically, what this means is that, instead of the typical evaluation pipeline where the evaluation loop is done with a (fixed) LLM-evaluator (Figure 1a below), they propose an inner loop where builders grade outputs and edit their criteria, which then helps them build faster and more reliably (Figure 1b below).

Image

To evaluate EvalGen, the authors assessed its ability to generate assertions, both code and prompt-based, that classified defective responses. They tested EvalGen on Medical and Product tasks. For the former, the LLM should extract specific information without revealing personally identifiable information. For the latter, the LLM should craft SEO-friendly descriptions without negative reviews. The medical task had 84 samples, of which 68% passed (i.e., non-defects); the product tasks had 100 samples, of which 51% passed.

They compared EvalGen to SPADE, a fully automated baseline. Defining defects as positives and non-defects as negatives, they evaluated EvalGen and SPADE on coverage (i.e., ability to fail outputs that the user thinks are bad aka recall of defects) and false failure rate (FFR; ability to not fail outputs that the user thinks are good aka 1 - precision of defects).

Results: Compared to SPADE, EvalGen had better performance on the product task, achieving 0.73 recall of defects while SPADE had 0.49 recall. Furthermore, EvalGen required fewer assertion statements. Both approaches had identical false positive rates (0.1 on medical and 0.39 on product).

Image

The authors also conducted a user study with nine practitioners. Notable findings include:

  • Grading outputs first helps with refining initial criteria, with one participant going as far as saying “you should enforce that we look at at least 20 examples first”.
  • Users were happy to grade outputs while waiting for the LLM-evaluator to evaluate responses. These graded responses could then be used to evaluate LLM-evaluator.
  • Users added new criteria when they observed new types of bad responses, reinforcing the idea that examining responses helps craft and improve on criteria.
  • LLM-evaluators were harder to trust compared to code-based assertions, possibly because users could edit the code-based assertions.

Finetuning LLM-evaluator models

If you’ve worked on aligning LLM-evaluators to your evaluation criteria, you’ll know that it can be be challenging achieve high recall and precision, consistently. One alternative, albeit an expensive one, is to finetune LLM-evaluator models.

Shepherd: A Critic for Language Model Generation is an LLM-evaluator (based on llama-2-7b-chat) that’s finetuned to critique model responses and suggest refinements. It’s finetuned on a feedback dataset consisting of community critique and human annotations.

Image

For the community critique, they used data from StackExchange (173 dedicated Q&A sites) and Reddit (data from 15 selected subreddits). The data was formatted as (question, answer, critique) triplets.

For human annotation, they selected ten language understanding, entailment, and summarization datasets that require complex understanding. These were: Entailment Bank (deductive reasoning), Proofwriter (logical reasoning), GSM8k (arithmetic reasoning), PIQA (physical reasoning), CosmosQA (commonsense reasoning), ECQA (commonsense reasoning), e-SNLI (deductive and commonsense reasoning), Adversarial NLI (adversarial entailment), GPT-3 summarization, and DeFacto (factual consistency). For each question, they provide a context, a correct output, and a candidate output, and ask annotators to give feedback on whether there were any errors in the candidate output. Human annotation cost $8 per sample. After post-processing, they ended up with 1,317 samples.

To evaluate Shepard, they used six public datasets covering a range of topics and skills such as commonsense, physical, and math reasoning: CommonSenseQA, Alpaca-Farm, OBQA, PIQA, FairEval, and TruthfulQA. They sampled 50 instances from the validation/test split of each dataset, resulting in 300 instances in the final evaluation set. To address concerns around data contamination, they developed a new test set (CritiqueEval) which contains 52 Reddit questions posted from June 2022 to June 2023. This period is past ChatGPT’s knowledge cutoff during the study.

Baseline models include ChatGPT (unspecified but likely gpt-3.5-turbo), alpaca-7b (llama-7b finetuned on 52k instruction-following data from ChatGPT), and SelFee (llama-7b finetuned for self-feedback and self-revision generation). These LLM-evaluators were in turn evaluated via gpt-4—it’s LLMs all the way down 🐢—which graded each feedback on a 1 - 7 Likert scale based on whether the feedback could point out errors in the answer, or confirm the answer is correct when there are no errors.

Results: When asking gpt-4 and human evaluators to pick the better feedback given two candidate feedback, Shepard outperformed alpaca-7b and SelFee while achieving parity with ChatGPT in generating helpful feedback and critique. It also consistently generated better feedback on CritiqueEval.

Image

However, when evaluating critiques on a Likert scale (from 1 - 7) via gpt-4, the gpt-4 and human evaluations conflicted. For example, gpt-4 gave alpaca-7b an average score of 4.7 while human annotators gave it an average score of 2.9. The paper also found that gpt-4 favored responses that provided more examples. Overall, this suggests that gpt-4 as an evaluator has biases such as a bias towards giving higher scores and verbosity bias.

Image

Cappy: Outperforming and Boosting Large Multi-Task LMs with a Small Scorer uses a pretrained evaluator model that can score and rank the output of diverse instructions to improve result quality. Cappy focuses on well-defined language modeling tasks that have more straightforward evaluation approaches, such as accuracy and ROUGE. Such tasks include language identification, common sense reasoning, logical reasoning, and more.

Image

Cappy is a RoBERTa-based model (360M parameters) with a linear layer as a regression head. Its input is an instruction-response pair and its output is a 0.0 to 1.0 scalar score. The score estimates the correctness of the response based on the instruction. Thus, given an input instruction and candidate response, Cappy evaluates and scores the response.

Cappy is trained on 39 diverse datasets from PromptSource which includes tasks such as question answering, sentiment analysis, summarization, etc. The instruction-response pairs from PromptSource are given a score of 1.0 while deliberately mismatched pairs are assigned a score of 0.0. To augment the data, bart0 and t0-3b were used to generate candidate responses and scores are assigned based on ROUGE-L. Overall, they collected a pretraining dataset of 160 million examples.

Image

They evaluate Cappy on 11 held-out language understanding tasks from PromptSource, all of which are classification tasks that Cappy can function independently on (i.e., doesn’t need an upstream LLM to generate a response). They also apply Cappy on top of flan-t5 for 45 generation tasks in BIG-Bench, with Cappy scoring 17 candidate outputs from flan-t5.

Results: On the 11 classification tasks, Cappy outperforms much larger multi-task LLMs like opt-175b and is close to the performance of t0-11b (left). For the 45 tasks in BIG-Bench, Cappy consistently boosts the performance of flan-t5 by a large margin, suggesting that it can score and select better output. Nonetheless, while the results suggest that Cappy is capable of scoring and ranking output to select the best one, it’s unclear if Cappy is viable as an LLM-evaluator that can discriminate and exclude bad output.

Image

Prometheus: Inducing Fine-grained Evaluation Capability in Language Models is a finetuned evaluator (based on llama-2-chat) that performs fine-grained evaluation of text responses based on user-defined score rubrics. Prometheus takes as input the instructions, score rubric, response to evaluate, and a gold reference answer, making it a referenced-based evaluator. Then, it scores the response to evaluate and also returns text feedback.

Image

To finetune Prometheus, the authors built the Feedback Collection Dataset which contains 1,000 fine-grained score rubrics, 20k instructions, and 100k example responses and feedback generated by gpt-4. First, they wrote 50 seed rubrics. Then, they used gpt-4 to expand the seed rubrics to a more robust and diverse set of 1,000 rubrics. Next, they prompted gpt-4 to generate 20 instructions for each rubric. Finally, they prompted gpt-4 to generate five responses and feedback for each instruction. The researchers then finetuned llama-2-chat (7b and 13b variants) to sequentially generate the feedback and then the score, similar to CoT reasoning followed by the final response.

To evaluate Prometheus, the authors compared it to human evaluation and gpt-4 evaluation as a baseline, measuring Prometheus’ correlation with both. They also conducted human evaluation to assess the quality of the feedback via pairwise comparisons. The evaluation was performed on Feedback Bench (generated via the same approach as Feedback Collection), Vicuna Bench, MT Bench, and FLASK Eval.

Results: For correlation with human judgments, they used 45 instances from Feedback Bench. On this dataset, Prometheus achieved 0.897 Pearson correlation while gpt-4 has 0.882 correlation and gpt-3.5-turbo has 0.392 correlation. In addition, via pairwise comparisons by humans, Prometheus is preferred over gpt-4 58.6% of the time, and preferred over gpt-3.5-turbo 79.6% of the time. For correlation with gpt-4, Prometheus has a higher correlation than even gpt-4 itself on Feedback Bench. Nonetheless, it lags behind gpt-4 on Vicuna Bench, MT Bench, and FLASK Eval.

Image Image

In an ablation study, they showed that excluding the reference answer leads to the greatest performance degradation, in contrast to excluding the scoring rubric or the feedback distillation process (Table 6 below). This suggests that the model may be learning to perform some form of fuzzy matching on the reference, and that it may still still a ways to go before it can do reference-free evaluation.

Image

LLM Critics Help Catch LLM Bugs introduces CriticGPT, a finetuned LLM-evaluator designed to critique and find bugs in code generated by other LLMs. CriticGPT takes as input a (question, code answer) pair and returns a critique that points out potential problems in the answer.

Image

Training data for CriticGPT comes from the OpenAI RLHF pipeline. The authors selected samples where responses contained at least 50% Python code by line count. Part of this data organically contains bugs that humans had previously detected and gave a low score.

In addition to the organic bugs, they hired contractors to insert subtle bugs (“tampering”). Bugs inserted via tampering were generally harder to catch and more severe than average, and were not from the natural distribution of model errors. Tampering was done adversarially, where contractors had access to CriticGPT and tried to introduce bugs that CriticGPT missed in at least one out of three tries. After introducing the bug via tampering, the same contractor then proceeded to compare and rate critiques of the tampered answer.

Image

Results: CriticGPT was able to catch substantially more inserted bugs (80 - 85%) than human contractors (right below). Furthermore, CriticGPT’s critiques were more preferred than human critiques (left below). (ChatGPT too, though CriticGPT’s critiques were preferred by a larger margin.) In addition, humans assisted by CriticGPT caught more bugs than humans alone, demonstrating the impact of AI augmentation.

Image

Nonetheless, CriticGPT had more nitpicks and hallucinations compared to human critiques though it was significantly lower than ChatGPT. This suggests that while CriticGPT may have higher recall in detecting bugs, it comes with a trade-off in precision in the form of nitpicks and hallucinations.

Image

Critiques against and support for LLM-evaluators

After that whirlwind tour of LLM-evaluators for various use cases, evaluation prompting techniques, alignment workflows, and finetuning LLM-evaluator models, we now review critiques against and support for LLM-evaluators.

Judging LLM-as-a-Judge with MT-Bench and Chatbot Arena evaluates the performance of strong LLMs, such as gpt-4, on evaluating chatbot responses to open-ended questions.

Image

The authors introduced two new benchmarks. MT-Bench is a dataset of 80 multi-trun questions across eight categories such as writing, math, and knowledge. LMSys Chatbot Arena is a platform where users interact with pairs of anonymous chatbots and vote for their preferred response. LLM-evaluators evaluated chatbot responses from both benchmarks via direct scoring, pairwise comparison, and reference-based evaluation.

Image

On MT-Bench, the authors generated answers via six models and collected 3k judgments from 58 expert-level human judges. The goal was to measure LLM-evaluator agreement with human experts. For Chatbot Arena, they sampled 3k single-turn votes from 30k arena data points. They had a custom agreement metric, defined as the probability of randomly selected individuals of each type agreeing on a randomly selected question.

Results: On MT-Bench, gpt-4 with direct scoring and pairwise comparison had high agreement with human experts. In a setup (S2) that excluded ties, the gpt-4 to human agreement was 85% which exceeded the human-human agreement of 81%. Furthermore, when shown gpt-4 judgments, humans found those judgments reasonable 75% of the time and were even willing to change their choices a third of the time.

Image

On Chatbot Arena, similar results were achieved between gpt-4, gpt-3.5, and claude-v1, and human ratings, with an agreement of between 83% - 87%. Nonetheless, this agreement could be high because the agreement metric doesn’t account for agreement due to random chance, unlike Cohen’s $\kappa$ which does.

Image

They also identified some biases of LLM-evaluators. First, position bias. During pairwise comparisons, LLM-evaluators tend to prefer the response in one position over others. Most LLM-evaluators preferred the first position, with gpt-3.5 being biased 50% of the time and claude-v1 being biased 70% of the time (Table 2 below).

Image

Second, verbosity bias, where LLM-evaluators favor longer, more verbose responses, even if they’re not as clear, high-quality, or accurate as shorter alternatives. To generate these verbose distractors, the authors had gpt-4 rephrase some MT-Bench answers without adding new information and concatenated them to the original answers. Both claude-v1 and gpt-3.5 preferred the longer response more than 90% of the time (Table 3 above).

Finally, self-enhancement bias, where LLM-evaluators preferred answers generated by themselves. The authors compared the win rate of six models evaluated by LLM-evaluators and humans. Gpt-4 favored itself with a 10% higher win rate while claude-v1 favored itself with a 25% higher win rate.

On the Limitations of Fine-tuned Judge Models for LLM Evaluation compares four finetuned LLM-evaluators (JudgeLM, PandaLM, Auto-J, and Prometheus) to gpt-4 across various benchmarks. These models were trained on their respective datasets such as dolly-15k, alpaca-52k, and gpt-4 synthetic data.

Image

These finetuned LLM-evaluators perform either pairwise comparison or direct scoring.

Image

To assess LLM-evaluator performance on specific aspects, they used these datasets:

  • LLMBar for evaluating fairness. The dataset contains paired output with a correct answer and an incorrect answer that had better superficial quality.
  • HaluEval for factuality evaluation in QA, summarization, and dialogue.
  • ToxiChat for toxicity evaluation based on conversations between humans and AI.
  • SALAD-Bench for safety evaluations on instructions and responses.

Results: They show that the finetuned LLM-evaluators essentially functioned as task-specific classifiers. To demonstrate this, the authors trained several LLM-evaluators, including Vicuna-generation, Vicuna-classification, and DeBERTa-classification. They found that the DeBERTa-classification evaluator performed similarly to the Vicuna models in terms of accuracy. Furthermore, these finetuned LLM-evaluators had higher correlation amongst themselves than with gpt-4. Taken together with further findings below, this suggests that the finetuned LLM-evaluators were inherently task-specific classifiers.

Image

Interestingly, the results also showed that the Vicuna-generation model consistently outperformed the Vicuna-classification model, indicating that an LLM-evaluator with a next-token prediction objective can outperform one with a classification objective. (My prior was that a classification objective was simpler to learn, making it more data efficient and thus more accurate.)

They also found that although finetuned LLM-evaluators achieved high performance on in-domain test sets, even surpassing gpt-4, they underperformed gpt-4 in dimensions such as generalizability, fairness, and aspect-specific evaluation. Thus, while finetuned LLM-evaluators performed best on their trained evaluation schemes (e.g., PandaLM or JudgeLM for pairwise comparisons), applying them to a different scheme (e.g., direct scoring) led to a catastrophic performance drop. This did not occur for gpt-3.5 or gpt-4.

Similarly, on evaluation datasets for fairness (LLMBar), the finetuned LLM-evaluators performed worse than random guessing, suggesting that they were biased (or perhaps overfitted) on superficial quality. The finetuned evaluators also performed poorly on factuality, toxicity, and safety evaluation.

Finding Blind Spots in Evaluator LLMs with Interpretable Checklists introduces a framework and dataset to examine the proficiency of LLM-evaluators in evaluating four tasks: coherence in long-form writing (LF), factuality (F), instruction following (IF), and reasoning proficiency (R).

For the dataset, they had correct answers and added perturbed answers targeted at the four tasks. To create the dataset, the authors selected 100 questions for each task category, sampling them from a mix of six test sets (WizardLM, MT-Bench, UltraChat, LIMA, LLMBar, and IFEval), as well as GSM8k and MATH, for a total of 400 questions. They also created 200 prompts tailored to instruction-following to test specific perturbation categories. The gold and perturbed answers were generated by gpt-4-turbo. 25% of this data was manually reviewed to ensure that the gold answers had a high level of correctness and that the perturbed answers should result in a scoring penalty.

Image

They then assessed whether five LLM-evaluators could detect the quality drops (in perturbed answers). The models were gpt-4-turbo, gemini-1.5-pro, claude-3-opus, llama-3-70b-instruct, and prometheus-2. These LLM-evaluators assessed output via direct scoring, pairwise comparison, and reference-based evaluation.

Results: The overall best model (gpt-4-turbo) failed to assign lower scores to perturbed answers more than 50% of the time on LF, F, and IF, and more than 20% of the time on R (left). Furthermore, on direct scoring, simpler strategies such as direct scoring with CoT outperformed more advanced strategies that involved rules and rubrics. The other LLM-evaluators performed worse than gpt-4-turbo.

Image

LLMs instead of Human Judges: A Large Scale Empirical Study across 20 NLP Evaluation Tasks evaluates 11 LLM-evaluators to replicate human judgment across 20 language tasks. These include general tasks such as reasoning, instruction following, and toxicity detection, as well as downstream tasks such as summarization, translation, and dialogue.

Image

The authors selected 11 widely used models that had high performance across several tasks on the Open LLM and Chatbot Arena leaderboards. These include gpt-4, gemini-1.5, command-r, command-r+, llama-3-8b, llama-3-70b, mistral, mixtral-8x7b, mixtral-8x22b, olmo, and starling.

Results: The LLM-evaluators had high variance in correlation with human judgments across the datasets. Each model performed poorly on some datasets, suggesting that they’re not reliable enough to systematically replace human judgments.

In addition, LLM-evaluators correlated better with non-expert annotators compared to expert annotators. This suggests that while several studies report high correlation with human annotations, the results could be overinflated if the annotators were non-experts.

Image

Judging the Judges: Evaluating Alignment and Vulnerabilities in LLMs-as-Judges evaluates nine LLM-evaluators, using the TriviaQA dataset as a knowledge benchmark. The researchers sampled 400 questions from the unfiltered partition of TriviaQA and used the short answers as reference answers (i.e., the evaluation approach is reference-based). The training set was used as few-shot examples.

The LLM-evaluators were instructed to only respond with a single word: “correct” or “incorrect”. As baselines, the authors included exact match (EM) and contains substring (contains). For alignment metrics, they considered percentage agreement and Cohen’s $\kappa$.

Your task is to look at the following question, and based on the references provided, 
determine if the model’s response is correct or incorrect. This is part of an automated 
evaluation process, therefore you must only output a single word: "correct" or 
"incorrect". 

Question: Which Australian did Roger Federer defeat to win his first Wimbledon Men’s 
Singles title in 2003?

References:
MARK PHILIPPOUSSIS
MARK PHILIPPOUSSIS

Model Response:
Mark Philippoussis

Evaluation (correct/incorrect):

Results: Gpt-4 and llama-3-70b had good human-alignment, achieving Cohen’s $\kappa$ of 0.84 and 0.79 respectively. However, they were still significantly lower than the human-human Cohen’s $\kappa$ of 0.97. Surprisingly, the contains baseline had higher correlation than half of the evaluator models on what was essentially a fuzzy matching task.

Image

The authors also noted that, compared to percentage agreement, Cohen’s $\kappa$ was better able to distinguish between LLM-evaluators. For example, while llama-3-8b had percentage agreement of 80%, it’s Cohen’s $\kappa$ was only 0.62. Similarly, LLM-evaluators with high Cohen’s $\kappa$ (>0.80; right below) had relatively less divergence in scores compared to when they had high percentage agreement (>80%; left below). Overall, this demonstrates that Cohen’s $\kappa$ provides a more precise and conservative measurement of alignment compared to percentage agreement (and almost most correlation metrics.)

Image

• • •

That was a lot of papers and results! Let’s summarize what we learned about how to apply, evaluate, and operate LLM-evaluators. While the following may be an oversimplification, I hope it provides a useful starting point for working with LLM-evaluators.

Image

  • First, is your task objective (e.g., factuality, toxicity, instruction-following) or subjective (e.g., tone, persuasiveness, writing style)?
    • If it’s objective, apply direct scoring as the better option from a pair might still be a defect. Plus you don’t need an alternative for comparison.
    • If it’s subjective, pairwise comparisons will likely be more reliable.
  • If using direct scoring, can you simplify the task to binary (e.g., true/false)?
    • If so (binary), use classification metrics (e.g., recall, precision) or Cohen’s $\kappa$.
    • If not (Likert scale), adopt correlations like Spearman’s $\rho$ and Kendall’s $\tau$.
  • If using pairwise comparisons, apply Cohen’s $\kappa$.
    • And if you’re really confident in the ground truth, consider classification metrics (e.g., recall for picking the better choice between the pair).
    • Tips and best practices on applying pairwise comparisons here.
  • Do you need it as an evaluator during development, or as a guardrail in production?
    • If using it as an evaluator during development, you’ll likely evaluate only a few hundred samples and can tolerate the latency/cost of prompting an LLM API. For reliability, use CoT + n-shot prompts (more prompting tips).
    • If using it as a guardrail in production (low latency, high throughput), consider investing in finetuning a classifier or reward model, bootstrapping it on open-source data and labels you’ve collected during internal evals.

Thanks for sticking with me till the end! I hope you found this useful. What other resources on LLM-evaluators have you found helpful? Please comment below or DM me!


Thanks to the folks whose patient discussions and debates shaped my thinking, including Shreya Shankar, Summer Yue, Han Chung Lee, Hamel Husain, Eugene Cheah, Raza Habib, Shreya Rajpal, Kyle Corbitt, Joschka Braun, Vibhu Sapra, Garvan Doyle, Umang Shukla, Nicholas Marwell, Zach Witten, and more. All errors and misunderstandings my own.

References


If you found this useful, please cite this write-up as:

Yan, Ziyou. (Aug 2024). Evaluating the Effectiveness of LLM-Evaluators (aka LLM-as-Judge). eugeneyan.com. https://eugeneyan.com/writing/llm-evaluators/.

or

@article{yan2024llm-evaluator,
  title   = {Evaluating the Effectiveness of LLM-Evaluators (aka LLM-as-Judge)},
  author  = {Yan, Ziyou},
  journal = {eugeneyan.com},
  year    = {2024},
  month   = {Aug},
  url     = {https://eugeneyan.com/writing/llm-evaluators/}
}

Share on:

Browse related tags: [ llm eval ]

Join 8,500+ readers getting updates on machine learning, RecSys, LLMs, and engineering.