Skip to main content
Let’s review Question 3. When evaluating an LLM for deployment, which metric best measures the model’s ability to generate factually accurate responses? Options: Perplexity, BLEU score, Truthfulness score, Token generation speed. Correct answer: truthfulness score — because it is specifically designed to evaluate factual accuracy.
The image shows a question about evaluating LLM performance, asking which metric measures factual accuracy. The options are Perplexity, BLEU score, Truthfulness score (highlighted), and Token generation speed.
Why truthfulness score is the right choice
  • Truthfulness scores are created to measure factual correctness: they check generated claims against ground-truth facts, knowledge bases, or fact-checking systems.
  • These scores aim to quantify hallucinations and misinformation risk, which are central concerns when deploying LLMs in real-world applications (search, assistants, medical or legal apps).
Comparison of common metrics Short descriptions
  • Truthfulness score: Evaluates whether an output is factually correct, typically by comparing model assertions to a fact base or using automated fact-checkers and QA-based evaluation.
  • Perplexity: Measures how surprised a model is by a test sequence; useful for fluency and model fit but not for verifying facts.
  • BLEU score: Quantifies surface-level overlap with reference text; useful in translation but unreliable for factuality when many correct phrasings exist.
  • Token generation speed: A systems metric that reports latency or throughput; unrelated to whether generated content is true.
Best practices for assessing factual accuracy
  • Use truthfulness-specific automated evaluations (e.g., QA-based checks, fact verification datasets like FEVER or TruthfulQA) combined with targeted human review for nuanced or context-dependent claims.
  • Complement automated truthfulness metrics with downstream task checks (retrieval-augmented verification, knowledge-grounded generation) to reduce hallucinations.
  • Keep separate evaluation axes for fluency (perplexity), similarity (BLEU), and performance (latency) — each serves different decisions in model development and deployment.
When measuring factual accuracy, prefer truthfulness-oriented evaluations (automated fact-checkers, QA-based factuality tests, or specialized benchmarks). Combine automated truthfulness scores with focused human evaluation to catch subtle or context-dependent errors.
Do not rely solely on perplexity, BLEU, or generation speed to judge factual accuracy. These metrics can indicate fluency or system performance but will miss hallucinations unless paired with truthfulness-specific evaluations.
Further reading and resources

Watch Video