
- 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).
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.
- 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.
- TruthfulQA benchmark: https://github.com/sylinrl/TruthfulQA
- FEVER fact verification dataset: https://fever.ai/
- Survey of evaluation for factuality and hallucinations in NLG: see recent literature on factuality metrics and QA-based evaluation methods.