Datasets:

Modalities:
Text
Formats:
json
Size:
< 1K
ArXiv:
License:
xinwennn commited on
Commit
3b00e4e
·
verified ·
1 Parent(s): 2054125

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +104 -0
README.md ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ ---
4
+
5
+ # ClaimReview 2025Q4
6
+
7
+ ## Links
8
+
9
+ - 📑 ArXiv: [https://arxiv.org/abs/2607.23514](https://arxiv.org/abs/2607.23514)
10
+ - 💻 Code: [https://github.com/TrustworthyComp/Rethink-MAFC-Eval](https://github.com/TrustworthyComp/Rethink-MAFC-Eval)
11
+ - 🤗 HF Daily Paper: [https://huggingface.co/papers/2607.23514](https://huggingface.co/papers/2607.23514)
12
+
13
+ ClaimReview 2025Q4 is a curated benchmark of recent fact-checking claims and verdicts collected from IFCN-aligned fact-checking organizations.
14
+ This release contains **901** English claim-verification instances published between **2025-10-01** and **2025-12-31**, and is designed for evaluating automated fact-checking systems under a dynamic, time-sensitive setting.
15
+
16
+ ## NEWS
17
+
18
+ - **2026-07-26** 📄 – Preprint released on [arXiv](https://arxiv.org/abs/2607.23514).
19
+ - **2026-07-23** 🏆 – Accepted by MM-2026; see you in Brazil! 🇧🇷
20
+ - **2026-07-15** 🎉 – Source code is publicly released on [GitHub](https://github.com/TrustworthyComp/Rethink-MAFC-Eval); contributions and feedback are welcome!
21
+
22
+ ## Dataset
23
+
24
+ The dataset file is:
25
+
26
+ - `claim_review_2025q4.json`
27
+
28
+ Each instance follows the structure below:
29
+
30
+ ```json
31
+ {
32
+ "claim": "The claim text itself.",
33
+ "label": "One of: SUPPORTED, REFUTED, NEI.",
34
+ "review_url": "URL of the source fact-check article.",
35
+ "fact_checker": {
36
+ "name": "Fact-checking organization name.",
37
+ "country": "Country of the fact-checking organization.",
38
+ "language": "Language of the fact-check article.",
39
+ "website": "Official website of the organization.",
40
+ "ifcn_url": "IFCN profile URL of the organization.",
41
+ "avatar": "IFCN-hosted avatar image URL.",
42
+ "domain": "Primary web domain of the organization."
43
+ },
44
+ "date_published": "Publication date of the fact-check article (YYYY-MM-DD)."
45
+ }
46
+ ```
47
+
48
+ ## Dataset Statistics
49
+
50
+ - Total instances: **901**
51
+ - Label distribution:
52
+ - **REFUTED**: 606
53
+ - **NEI**: 169
54
+ - **SUPPORTED**: 126
55
+ - Fact-checking organizations: **14**
56
+ - Countries covered: **7**
57
+ - Date range: **2025-10-01** to **2025-12-31**
58
+
59
+ ## Label Definitions
60
+
61
+ - `SUPPORTED`: The claim is supported by the arguments and evidence presented.
62
+ - `REFUTED`: The claim is contradicted by the arguments and evidence presented.
63
+ - `NEI`: The presented evidence is not enough to support or refute the claim. It applies when the evidence either explicitly indicates that relevant evidence cannot be found or leaves certain aspects of the claim neither supported nor refuted.
64
+
65
+ ## Intended Uses
66
+
67
+ This dataset is used in our paper for sourcing up-to-date fact-checks:
68
+ [Novel Claim or Déjà Vu? Rethinking "Contamination-Free" Dynamic Evaluation for Multimodal Automated Fact-Checking](https://huggingface.co/papers/2607.23514).
69
+
70
+ ## Data Quality Notes
71
+
72
+ - All records include all top-level fields shown in the schema above.
73
+ - The dataset aggregates claims from multiple professional fact-checking outlets.
74
+ - URLs and publisher metadata are preserved to support traceability and evidence lookup.
75
+
76
+ ## Quick Start
77
+
78
+ ```python
79
+ import json
80
+
81
+ with open("claim_review_2025q4.json", "r", encoding="utf-8") as f:
82
+ data = json.load(f)
83
+
84
+ print(f"Loaded {len(data)} instances")
85
+ print(data[0].keys())
86
+ ```
87
+
88
+ ## Citation
89
+
90
+ If you use this dataset in your work, please cite:
91
+
92
+ ```bibtex
93
+ @inproceedings{rethink_mafc_eval_2026,
94
+ title={Novel Claim or Déjà Vu? Rethinking "Contamination-Free" Dynamic Evaluation for Multimodal Automated Fact-Checking},
95
+ author={He, Haorui and Chen, Xinwen and Wen, Dacheng and Cheng, Reynold and Lau, Francis C. M. and Li, Yupeng},
96
+ booktitle={Proc.~of MM},
97
+ year={2026}
98
+ }
99
+ ```
100
+
101
+ ## License
102
+
103
+ This dataset card is released under **CC BY-NC 4.0**.
104
+ Please make sure your downstream use also complies with the terms and with the usage policies of the original fact-check sources.