BLEU vs ROUGE vs BERTScore - Which to Use and Why All Three Fail on Chat
BLEU counts precision, ROUGE counts recall, BERTScore compares embeddings. Here is how each one actually computes a score, a worked example on the same sentence, and why none of them can grade an open-ended LLM answer.
Published:
Three metric names come up constantly in LLM evaluation - BLEU, ROUGE, and BERTScore - and they get treated as interchangeable “text similarity” scores. They are not. Each one measures a different thing, was built for a different task, and fails in a different way. Picking the wrong one gives you a number that looks rigorous and means nothing.
This guide explains how each actually computes a score, runs all three on the same sentence so you can see them diverge, and shows why none of them can grade an open-ended chat answer.
The three metrics at a glance
| Metric | What it measures | Built for | Handles paraphrase? |
|---|---|---|---|
| BLEU | N-gram precision vs a reference | Machine translation | No |
| ROUGE | N-gram recall vs a reference | Summarization | No |
| BERTScore | Embedding similarity vs a reference | Semantic overlap | Yes |
The one-line summary - BLEU asks did you avoid wrong words, ROUGE asks did you cover the right words, BERTScore asks did you capture the right meaning. All three still need a reference answer to compare against, and that shared assumption is where they all break on open-ended text.
BLEU - precision, built for translation
BLEU (Bilingual Evaluation Understudy) counts how many n-grams in the candidate output also appear in the reference. It computes this for unigrams, bigrams, trigrams and 4-grams, then combines them.
The two details that matter:
- It is precision-based. It asks what fraction of the candidate’s n-grams are “correct” - present in the reference. A candidate that only outputs words it is sure about scores well on precision.
- It has a brevity penalty. Pure precision would let a one-word output score perfectly, so BLEU multiplies by a penalty when the candidate is shorter than the reference. This stops the model gaming the score by saying almost nothing.
BLEU was designed for machine translation, where there genuinely is a “right” translation and exact wording carries meaning. Outside translation, its precision-and-brevity design is a poor fit.
ROUGE - recall, built for summarization
ROUGE (Recall-Oriented Understudy for Gisting Evaluation) flips the question. Instead of “how much of the candidate is correct,” it asks “how much of the reference did the candidate cover.”
The common variants:
- ROUGE-N - n-gram recall (ROUGE-1 for unigrams, ROUGE-2 for bigrams).
- ROUGE-L - based on the longest common subsequence, so it rewards matching word order without requiring contiguous n-grams.
ROUGE became the summarization standard because in summarization, coverage is the point - you want the summary to include the key content of the source. Its recall orientation makes it a coverage meter, not a fluency or faithfulness meter, which is exactly the confusion that trips teams up.
BERTScore - meaning, not exact strings
Both BLEU and ROUGE count exact string matches, so “the movie was excellent” and “the film was great” score near zero against each other despite meaning the same thing. BERTScore fixes that.
BERTScore embeds every token with a contextual language model, then matches each candidate token to its most similar reference token by cosine similarity. It averages those similarities into precision, recall, and an F1 score. Because it compares vectors rather than strings, synonyms and paraphrases score high. If embeddings are new to you, see the embedding primer.
The trade-offs - BERTScore needs a model to run, so it is slower and heavier than counting n-grams, and its score is only as good as the underlying embedding model. But for reference-based tasks where wording is free to vary, it is far more forgiving and more human-aligned than overlap counting.
The same sentence, three scores
Take one candidate and one reference:
- Reference - “The quarterly report shows revenue climbed sharply.”
- Candidate - “Earnings rose steeply according to the quarterly figures.”
The candidate is an excellent paraphrase. Watch the metrics disagree:
- BLEU - low. Almost no exact n-grams overlap (“quarterly” is about it), so precision is poor.
- ROUGE-1 - low to moderate. A couple of unigrams match, but “revenue/earnings” and “climbed/rose” are counted as misses.
- BERTScore - high. “Earnings” matches “revenue,” “rose” matches “climbed,” “steeply” matches “sharply” in embedding space, so the semantic overlap is scored correctly.
Same sentence, opposite verdicts - which is the entire reason you cannot pick a metric at random.
Why all three fail on open-ended answers
Here is the ceiling on every metric above - they are reference-based. They need one correct answer to compare against. That works for translation and summarization, where a reference exists. It falls apart for chat, reasoning, agents, and RAG answers, where many different responses are all valid.
Two failure modes follow directly:
- A correct answer worded differently gets punished. Your model gives a perfectly good reply that does not match your single reference, and the score drops.
- A wrong answer that reuses reference words gets rewarded. The metric sees overlap and scores it high, even though the answer is false.
BERTScore softens the first problem by matching meaning, but it still cannot tell you whether an answer is helpful, faithful to a source document, or safe. Those qualities have no reference string at all. For open-ended generation you need an LLM-as-judge metric - see G-Eval explained for the chain-of-thought judging approach, and faithfulness for the RAG hallucination check that works with no reference answer.
So which one, when
- Machine translation - BLEU. It is the field standard and the task fits its design.
- Reference-based or extractive summarization - ROUGE, usually ROUGE-1, ROUGE-2 and ROUGE-L together.
- Semantic overlap with a reference - BERTScore, when paraphrasing is fine but you still have a gold answer.
- Open-ended chat, agents, RAG, tone, instruction-following - an LLM-as-judge metric. Overlap metrics do not apply.
A common production pattern is to run a cheap overlap metric as a fast regression gate and a judge metric for the qualities that actually matter. Our LLM evaluation metrics explained guide lays out that layered approach, and what LLM evaluation is covers the fundamentals.
Where the tools fit
You rarely code these from scratch. DeepEval ships classic scorers alongside its LLM-as-judge metrics in one Apache-2.0 framework, so you can run an overlap score and a G-Eval judge in the same pytest-style suite and compare them. Arize Phoenix provides 50+ pre-built eval metrics with the strongest RAG evaluation in the category, and it runs locally in under a minute if you want to eyeball metric behavior on real traces before committing to one.
Bottom line - these are not three flavors of the same score. BLEU is precision for translation, ROUGE is recall for summarization, BERTScore is semantic overlap for reference-based tasks, and none of them can grade an open-ended answer. Match the metric to the task, and reach for a judge metric the moment your output has more than one right answer. For the full field of platforms that ship these scorers, see best RAG evaluation tools.
Frequently Asked Questions
What is the difference between BLEU and ROUGE?
They measure opposite things. BLEU is precision-oriented - of the n-grams the candidate produced, how many appear in the reference - and it adds a brevity penalty so short outputs cannot game it. It was built for machine translation. ROUGE is recall-oriented - of the n-grams in the reference, how many the candidate covered - and it was built for summarization, where covering the key content matters more than exact phrasing. In short, BLEU asks "did you avoid saying wrong things," ROUGE asks "did you cover the right things."
How does BERTScore work?
BERTScore replaces n-gram counting with embeddings. It runs both the candidate and the reference through a contextual language model, gets a vector for every token, then matches each candidate token to its most similar reference token by cosine similarity. It averages those similarities into precision, recall and an F1 score. Because it compares meaning rather than exact strings, it credits synonyms and paraphrases that BLEU and ROUGE miss - "the film was great" and "the movie was excellent" score high on BERTScore but poorly on BLEU.
Why do BLEU, ROUGE and BERTScore fail on chatbot answers?
All three are reference-based - they need a single correct answer to compare against. Open-ended tasks like chat, reasoning or creative writing have many valid answers, so a correct reply that happens to differ from your one reference gets punished, and a wrong reply that reuses reference words gets rewarded. BERTScore softens this by matching meaning, but it still cannot judge whether an answer is helpful, faithful to a source, or safe. For those you need an LLM-as-judge metric like G-Eval.
Which metric should I use for LLM evaluation?
Match the metric to the task. Use BLEU for machine translation, ROUGE for extractive or reference-based summarization, and BERTScore when you want semantic overlap that tolerates paraphrasing but still have a reference. For open-ended generation - chat, agents, RAG answers, tone, instruction-following - drop overlap metrics and use an LLM-as-judge approach such as G-Eval or a faithfulness scorer. Many teams run a cheap overlap metric as a fast gate and a judge metric for the qualities that actually matter.
Explore More
Tool Reviews
Related Articles
- Context Precision vs Recall Explained - Diagnosing RAG Retrieval in 2026
- The Faithfulness Metric Explained - How to Catch RAG Hallucination in 2026
- LLM Evaluation Metrics Explained - A Practical 2026 Guide
- RAG Evaluation Metrics Explained - The 2026 Practical Guide
- How to Evaluate RAG Chunking in 2026 - Test Chunk Size and Strategy
Free Newsletter
Get the LLM Evals Newsletter
Platform comparisons, pricing changes and eval technique deep-dives. No spam.
Related Articles
Evaluation of LLM Applications: A Practical 2026 Guide
A vendor-neutral guide to evaluation of LLM applications: metric selection, dataset sizing math, judge calibration, cost models and a tool comparison.
August 9, 2026
guideContext Precision vs Recall Explained - Diagnosing RAG Retrieval in 2026
Context precision punishes noise, context recall punishes gaps. Here is how each retrieval metric is computed, a worked example, and how the two scores together tell you whether your retriever is over-fetching or missing documents.
July 28, 2026
guideThe Faithfulness Metric Explained - How to Catch RAG Hallucination in 2026
Faithfulness measures whether every claim in an answer is supported by the retrieved context. Here is exactly how the claim-extract-and-verify scoring works, a worked example, and why a faithful answer can still be wrong.
July 28, 2026
Confident AI (DeepEval) Review
Arize Phoenix Review