three classic automatic metrics and their limits: (1) BLEU — n-gram precision with a brevity penalty,
BLEU=BP⋅exp(∑nwnlogpn), built for MT, blind to synonyms and legitimate paraphrases; (2) ROUGE — recall-oriented n-gram / LCS F-measure for summarization, also ignoring semantics; (3) perplexity
PPL(x)=exp(−N1∑ilogP(xi∣x<i)) — measures fit, not quality; favors short text and misses factual errors. LLM-as-judge uses a large model as scorer/comparator, with agreement measured by Cohen's Kappa:
κ=1−pepo−pe (observed agreement minus chance agreement).