When is ROUGE-L more appropriate than ROUGE-2 for evaluating LLM outputs?
Same topic, related formats. Practice these next.
Same topic, related formats. Practice these next.
ROUGE-L beats ROUGE-2 when ideas appear in the same order but exact phrasing differs, as in summarization. Its LCS basis rewards in-order overlap without demanding contiguous bigrams.
Imagine grading two students who summarised the same book. ROUGE-2 only gives points when they used the exact same two-word phrases, like 'the king'. If one wrote 'sharp decline' and the other wrote 'declined sharply', ROUGE-2 sees nothing in common, even though they clearly mean the same thing. ROUGE-L is more forgiving. It looks for words that show up in both summaries in the same left to right order, even with other words sprinkled between them. So 'revenue' followed later by 'declined' still counts, because both summaries mention them in that order. That makes ROUGE-L a better fit for summaries, where good writing rephrases ideas instead of copying exact word pairs. It still cannot tell whether the meaning is actually correct, only whether the words line up.
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: LCS versus bigram overlap, the ROUGE-L F-measure and its recall weighting, why it suits summarization, surface-overlap limits, and where to pair it with semantic and judge-based eval.
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.
Assuming ROUGE-L subsumes ROUGE-2 or measures meaning. It measures in-order word overlap only, ignores semantics, and rewards different phenomena than contiguous bigram matching.
The night-before-the-interview bullets. Scan these on the way to the call.
Primary sources. Skim if you want the original framing.