How does BERTScore improve on BLEU, and what is its key limitation?
Same topic, related formats. Practice these next.
Same topic, related formats. Practice these next.
BERTScore matches contextual token embeddings by cosine similarity for a soft precision, recall, and F1, so it rewards paraphrase that BLEU misses. Its blind spot: a fluent wrong answer still scores high.
BLEU is a grader who only gives credit when your essay reuses the exact words of the answer key. Say 'a car' when the key says 'an automobile' and you lose points, even though you are right. BERTScore is a smarter grader. It understands that 'car' and 'automobile' mean nearly the same thing, so it gives near-full credit for good paraphrases. It does this by turning each word into a list of numbers that captures meaning, then matching your words to the key's words by closeness. The catch: this grader only checks whether your essay sounds like the key, not whether your facts are correct. Write a smooth, confident sentence that says something false, and it can still earn a high mark because it reads like a right answer.
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example.
Everything important, quickly.
5 min: BLEU brittleness, contextual embeddings, greedy cosine matching into precision/recall/F1, the factual-blindness limitation, and where BERTScore fits in a 2026 eval panel.
| Property | BLEU / ROUGE | BERTScore |
|---|---|---|
| Matching unit | Exact n-gram overlap | Contextual token embeddings |
| Paraphrase / synonyms | Penalized (no exact match) | Rewarded (close in vector space) |
| Word-order sensitivity | High (n-gram based) | Low (token-level matching) |
| Reference required | Yes | Yes |
| Catches factual error | No | No |
| Main cost | Brittle to wording | Encoder forward pass per token |
Real products, models, and research that use this idea.
What an interviewer would ask next. Try answering before peeking at the approach.
Red flags and common mistakes that signal junior thinking. Click to expand.
Treating a high BERTScore as proof of correctness. It measures semantic overlap with a reference, not factual accuracy, so a fluent hallucination can score as high as a correct answer.
The night-before-the-interview bullets. Scan these on the way to the call.
Primary sources. Skim if you want the original framing.