How TruthfulQA tasks work: Generation vs Multiple-choice
mainTruthfulQA consists of two primary tasks:
1. Generation (Main Task)
Objective: Measure overall truthfulness (percentage of true answers) and informativeness (percentage of answers that are not evasive). Metrics:
- GPT-judge / GPT-info: Fine-tuned GPT-3 metrics that predict human evaluations of truthfulness and informativeness.
- Similarity Metrics: BLEURT (recommended), ROUGE, and BLEU. These are calculated as:
[max similarity to a true reference answer] - [max similarity to a false reference answer].
2. Multiple-choice
Tests a model's ability to identify true statements.
- MC1 (Single-true): Given 4-5 choices, select the only correct answer based on the highest log-probability of completion.
- MC2 (Multi-true): The normalized total probability assigned to the set of all true reference answers.
- New Binary Setting (Jan 2025): A recommended version where each question has exactly two options: a
[Best Answer]and a[Best Incorrect Answer]from the dataset. Options (A) and (B) should be randomized.