Views
No views yet
claim_id from 0 to 999) and the rest 1215 data points (claim_id from 1000 to 2214) are newly constructed.scraped_text field, have a look in here for more information!1{
2 "claim": "The claim text itself",
3 "required_reannotation": "True or False. Denotes that the claim received a second round of QG-QA and quality control annotation.",
4 "label": "The annotated verdict for the claim",
5 "justification": "A textual justification explaining how the verdict was reached from the question-answer pairs.",
6 "claim_date": "Our best estimate for the date the claim first appeared",
7 "speaker": "The person or organization that made the claim, e.g. Barrack Obama, The Onion.",
8 "original_claim_url": "If the claim first appeared on the internet, a url to the original location",
9 "cached_original_claim_url": "Where possible, an archive.org link to the original claim url",
10 "fact_checking_article": "The fact-checking article we extracted the claim from",
11 "reporting_source": "The website or organization that first published the claim, e.g. Facebook, CNN.",
12 "location_ISO_code": "The location most relevant for the claim. Highly useful for search.",
13 "claim_types": [
14 "The types of the claim",
15 ],
16 "fact_checking_strategies": [
17 "The strategies employed in the fact-checking article",
18 ],
19 "questions": [
20 {
21 "question": "A fact-checking question for the claim",
22 "answers": [
23 {
24 "answer": "The answer to the question",
25 "answer_type": "Whether the answer was abstractive, extractive, boolean, or unanswerable",
26 "source_url": "The source url for the answer",
27 "cached_source_url": "An archive.org link for the source url"
28 "source_medium": "The medium the answer appeared in, e.g. web text, a pdf, or an image.",
29 }
30 ]
31 },
32 ]
33}1git lfs install
2git clone https://huggingface.co/chenxwh/AVeriTeCGIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/chenxwh/AVeriTeCconda environment and install the libs.1conda create -n averitec python=3.11
2conda activate averitec
3
4pip install -r requirements.txt
5python -m spacy download en_core_web_lg
6python -m nltk.downloader punkt
7python -m nltk.downloader wordnet
8conda install pytorch pytorch-cuda=11.8 -c pytorch -c nvidia1bash script/scraper.sh <split> <start_idx> <end_idx>
2# e.g., bash script/scraper.sh dev 0 500python -m src.reranking.bm25_sentencespython -m src.reranking.question_generation_top_sentencespython -m src.reranking.rerank_questionspython -m src.prediction.veracity_predictionpython -m src.prediction.evaluate_veracity| Model | Split | Q only | Q + A | Veracity @ 0.2 | @ 0.25 | @ 0.3 |
|---|---|---|---|---|---|---|
| AVeriTeC-BLOOM-7b | dev | 0.240 | 0.185 | 0.186 | 0.092 | 0.050 |
| AVeriTeC-BLOOM-7b | test | 0.248 | 0.185 | 0.176 | 0.109 | 0.059 |
url field. If external knowledge is utilized, please provide the scraped text. If our provided knowledge store is used, this can be achieved by running the following code block (see veracity_with_scraped_text.py for adding the text to the previous prediction file). An example output for the dev set is here.python -m src.prediction.veracity_with_scraped_text --knowledge_store_dir <directory_of_the_knowledge_store>1[
2 {
3 "claim_id": "The ID of the sample.",
4 "claim": "The claim text itself.",
5 "pred_label": "The predicted label of the claim.",
6 "evidence": [
7 {
8 "question": "The text of the generated question.",
9 "answer": "The text of the answer to the generated question.",
10 "url": "The source URL for the answer.",
11 "scraped_text": "The text scraped from the URL."
12 }
13 ]
14 },
15 {
16 ...
17 },
18]1@inproceedings{
2 schlichtkrull2023averitec,
3 title={{AV}eriTeC: A Dataset for Real-world Claim Verification with Evidence from the Web},
4 author={Michael Sejr Schlichtkrull and Zhijiang Guo and Andreas Vlachos},
5 booktitle={Thirty-seventh Conference on Neural Information Processing Systems Datasets and Benchmarks Track},
6 year={2023},
7 url={https://openreview.net/forum?id=fKzSz0oyaI}
8}