averitec-eval
AVeriTeC: A Dataset for Real-world Claim Verification with Evidence from the Web — Schlichtkrull et al. (2023) (arXiv:2305.13117, 2023)
What this evaluates
Evaluates a model's ability to verify real-world claims by retrieving web evidence, generating supporting questions, predicting veracity stance, and producing textual justifications. It probes retrieval quality, stance detection, and justification generation under realistic conditions with temporal and context constraints.
Datasets
Metrics
Macro-F1 (primary) — range: [0, 1]
- Average of per-class F1 scores across four veracity labels: Supported, Refuted, Conflicting evidence/cherrypicking, and Not enough evidence.
METEOR — range: [0, 1]
- Standard METEOR metric comparing generated justification text against gold justification references, accounting for synonymy and stemming.
AVERITEC score — range: [0, 1]
- A thresholded evaluation metric for veracity and justification, computed at a similarity threshold lambda (recommended 0.25). Scores reflect how well predicted evidence and verdicts align with gold annotations under this cutoff.
Input / output format
Input: Claim text, optionally accompanied by retrieved web documents/sentences and generated questions.
Output: Veracity label (Supported, Refuted, Conflicting evidence/cherrypicking, or Not enough evidence), generated questions, retrieved evidence sentences, and a textual justification.
Scoring recipe
def compute_macro_f1(predictions, gold):
classes = ['Supported', 'Refuted', 'Conflicting evidence/cherrypicking', 'Not enough evidence']
f1_scores = []
for cls in classes:
tp = sum(1 for p, g in zip(predictions, gold) if p == cls and g == cls)
fp = sum(1 for p, g in zip(predictions, gold) if p == cls and g != cls)
fn = sum(1 for p, g in zip(predictions, gold) if p != cls and g == cls)
prec = tp / (tp + fp) if (tp + fp) > 0 else 0
rec = tp / (tp + fn) if (tp + fn) > 0 else 0
f1 = 2 * prec * rec / (prec + rec) if (prec + rec) > 0 else 0
f1_scores.append(f1)
return sum(f1_scores) / len(f1_scores)
# METEOR is computed via standard library against gold justifications
# AVERITEC score applies threshold lambda (e.g., 0.25) to veracity/justification alignment
Common pitfalls
- Retrieval systems often rely on wrong evidence rather than paraphrasing, which standard metrics may penalize unfairly.
- Stance detection models frequently produce false positives for 'Conflicting evidence/cherrypicking' when context-adding questions are misclassified as refuting.
- Threshold selection (lambda) significantly impacts scores; lambda=0.25 is recommended over stricter cutoffs.
- LLMs like ChatGPT may achieve high veracity accuracy but fail to provide valid evidence, leading to hallucinated justifications.
Evidence (verbatim from paper)
We tested three different models for veracity prediction: BERT-large, bloom-7b1, and Vicuna-13b. We found BERT to perform better by a slight margin; using gold evidence, we obtained macro-F1 scores of .49, .43, and .48 for the three models respectively.
Citation
@misc{schlichtkrull2023averitec,
title={AVeriTeC: A Dataset for Real-world Claim Verification with Evidence from the Web},
author={Schlichtkrull et al. (2023)},
year={2023},
note={arXiv:2305.13117}
}
1---2name: averitec-eval3description: Evaluates a model's ability to verify real-world claims by retrieving web evidence, generating supporting questions, predicting veracity stance, and producing textual justifications. It probes retrieval quality, stance detection, and justification generation under realistic conditions with temporal and context constraints. Use when the user wants to benchmark on AVeriTeC, or asks about evaluating this task. Reports Macro-F1.4---56# averitec-eval78> AVeriTeC: A Dataset for Real-world Claim Verification with Evidence from the Web — Schlichtkrull et al. (2023) (arXiv:2305.13117, 2023)910## What this evaluates1112Evaluates a model's ability to verify real-world claims by retrieving web evidence, generating supporting questions, predicting veracity stance, and producing textual justifications. It probes retrieval quality, stance detection, and justification generation under realistic conditions with temporal and context constraints.1314## Datasets1516- **AVeriTeC** — total ?; splits: train (-1), dev (-1); repo https://github.com/MichSchli/AVeriTeC1718## Metrics1920- `Macro-F1` **(primary)** — range: [0, 1]21 - Average of per-class F1 scores across four veracity labels: Supported, Refuted, Conflicting evidence/cherrypicking, and Not enough evidence.22- `METEOR` — range: [0, 1]23 - Standard METEOR metric comparing generated justification text against gold justification references, accounting for synonymy and stemming.24- `AVERITEC score` — range: [0, 1]25 - A thresholded evaluation metric for veracity and justification, computed at a similarity threshold lambda (recommended 0.25). Scores reflect how well predicted evidence and verdicts align with gold annotations under this cutoff.2627## Input / output format2829**Input**: Claim text, optionally accompanied by retrieved web documents/sentences and generated questions.3031**Output**: Veracity label (Supported, Refuted, Conflicting evidence/cherrypicking, or Not enough evidence), generated questions, retrieved evidence sentences, and a textual justification.3233## Scoring recipe3435```python36def compute_macro_f1(predictions, gold):37 classes = ['Supported', 'Refuted', 'Conflicting evidence/cherrypicking', 'Not enough evidence']38 f1_scores = []39 for cls in classes:40 tp = sum(1 for p, g in zip(predictions, gold) if p == cls and g == cls)41 fp = sum(1 for p, g in zip(predictions, gold) if p == cls and g != cls)42 fn = sum(1 for p, g in zip(predictions, gold) if p != cls and g == cls)43 prec = tp / (tp + fp) if (tp + fp) > 0 else 044 rec = tp / (tp + fn) if (tp + fn) > 0 else 045 f1 = 2 * prec * rec / (prec + rec) if (prec + rec) > 0 else 046 f1_scores.append(f1)47 return sum(f1_scores) / len(f1_scores)4849# METEOR is computed via standard library against gold justifications50# AVERITEC score applies threshold lambda (e.g., 0.25) to veracity/justification alignment51```5253## Common pitfalls5455- Retrieval systems often rely on wrong evidence rather than paraphrasing, which standard metrics may penalize unfairly.56- Stance detection models frequently produce false positives for 'Conflicting evidence/cherrypicking' when context-adding questions are misclassified as refuting.57- Threshold selection (lambda) significantly impacts scores; lambda=0.25 is recommended over stricter cutoffs.58- LLMs like ChatGPT may achieve high veracity accuracy but fail to provide valid evidence, leading to hallucinated justifications.5960## Evidence (verbatim from paper)6162> We tested three different models for veracity prediction: BERT-large, bloom-7b1, and Vicuna-13b. We found BERT to perform better by a slight margin; using gold evidence, we obtained macro-F1 scores of .49, .43, and .48 for the three models respectively.6364## Citation6566```bibtex67@misc{schlichtkrull2023averitec,68 title={AVeriTeC: A Dataset for Real-world Claim Verification with Evidence from the Web},69 author={Schlichtkrull et al. (2023)},70 year={2023},71 note={arXiv:2305.13117}72}73```7475- arXiv: 2305.13117