Datasets:
File size: 7,984 Bytes
156f84c f66903c 164b44d f66903c 156f84c f66903c 0089cba f66903c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 | ---
language:
- vi
license: cc-by-4.0
pretty_name: ViWikiFC
size_categories:
- 10K<n<100K
task_categories:
- text-classification
- text-retrieval
task_ids:
- fact-checking
- fact-checking-retrieval
- natural-language-inference
configs:
- config_name: default
data_files:
- split: train
path: data/train.csv
- split: dev
path: data/dev.csv
- split: test
path: data/test.csv
---
# ViWikiFC: Vietnamese Wikipedia Fact-Checking Dataset
## Dataset Summary
ViWikiFC is the first large-scale open-domain Vietnamese fact-checking dataset constructed from Vietnamese Wikipedia. The dataset is designed to support research on automated fact verification, evidence retrieval, and natural language inference (NLI) for Vietnamese.
The corpus consists of **20,916 manually annotated claim–evidence pairs** generated from **3,812 evidence sentences** extracted from **73 Vietnamese Wikipedia articles** across multiple domains including history, geography, science, culture, philosophy, and society.
Each claim is assigned one of three labels:
- **SUPPORTED** – the evidence supports the claim.
- **REFUTED** – the evidence contradicts the claim.
- **NOT_ENOUGH_INFORMATION (NEI)** – the evidence is insufficient to verify the claim.
Unlike automatically generated datasets, all claims in ViWikiFC were manually written by native Vietnamese annotators, resulting in natural linguistic diversity and realistic reasoning patterns.
---
## Supported Tasks
ViWikiFC can be used for:
- Fact Verification
- Evidence Retrieval
- Natural Language Inference
- Retrieval-Augmented Generation (RAG) evaluation
- Dense Retrieval
- Sparse Retrieval
- Cross-Encoder Re-ranking
- Vietnamese Language Model Evaluation
---
## Languages
- Vietnamese (`vi`)
---
# Dataset Structure
## Data Instances
An example instance is shown below.
```json
{
"claim": "Việt Nam gia nhập ASEAN vào năm 1995.",
"evidence": "Việt Nam chính thức trở thành thành viên ASEAN vào ngày 28 tháng 7 năm 1995.",
"label": "SUPPORTED"
}
```
## Data Fields
Each sample contains the following fields.
| Field | Description |
|--------|-------------|
| `claim` | A manually written Vietnamese claim |
| `evidence` | Evidence sentence extracted from Wikipedia |
| `label` | Verification label (`SUPPORTED`, `REFUTED`, `NOT_ENOUGH_INFORMATION`) |
Depending on the released version, additional metadata such as article title or evidence identifiers may also be included.
---
## Data Splits
The dataset is officially divided into training, dev, and test sets.
| Split | Samples |
|--------|---------:|
| Train | 16,738 |
| Dev | 2,090 |
| Test | 2,091 |
| Total | 20,916 |
The label distribution is approximately balanced across all splits.
---
# Dataset Creation
## Source Data
The evidence sentences were collected from **Vietnamese Wikipedia**.
- 73 Wikipedia articles
- 1,479 paragraphs
- 3,812 evidence sentences
The selected articles cover multiple knowledge domains, including
- History
- Geography
- Science
- Philosophy
- Culture
- Society
---
## Annotation Process
Thirty native Vietnamese speakers participated in the annotation process.
The annotation pipeline consisted of four stages:
1. Annotator recruitment and training
2. Evidence selection
3. Claim generation
4. Corpus dev
For every evidence sentence, annotators manually generated claims for three verification labels:
- SUPPORTED
- REFUTED
- NOT_ENOUGH_INFORMATION
To improve linguistic diversity, annotators were encouraged to use various rewriting strategies, including
- synonym substitution
- paraphrasing
- syntactic restructuring
- active/passive transformation
- reasoning modification
- presupposition
- quantity and temporal changes
- negation
Each evidence sentence generated multiple claims with different semantic relationships.
The final corpus achieved a **Fleiss' κ agreement of 95.87%**, indicating high annotation consistency.
---
# Dataset Statistics
| Property | Value |
|----------|------:|
| Evidence sentences | 3,812 |
| Wikipedia articles | 73 |
| Claim–evidence pairs | 20,916 |
| Annotators | 30 |
| Labels | 3 |
| Fleiss' κ | 95.87% |
---
# Benchmark Results
The dataset provides two benchmark tasks.
## Evidence Retrieval
| Method | Top-1 Accuracy |
|--------|---------------:|
| TF-IDF | 51.32% |
| SBERT | 65.12% |
| BM25 | **77.27%** |
## Verdict Prediction
The strongest baseline model is **InfoXLM-Large**, achieving
- Accuracy: **86.50%**
- Macro F1: **86.51%**
## End-to-End Pipeline
The best pipeline combines
- BM25
- InfoXLM-Large
with a **Strict Accuracy of 67.00%**, demonstrating that Vietnamese fact-checking remains a challenging task.
---
# Intended Uses
ViWikiFC is intended for research purposes, including
- Automated fact-checking
- Evidence retrieval
- Natural language inference
- Retrieval-Augmented Generation
- Vietnamese LLM evaluation
- Information verification
- Benchmarking retrieval models
---
# Limitations
Although the dataset covers multiple domains, it has several limitations.
- Evidence is restricted to Vietnamese Wikipedia.
- Claims are generated from single evidence sentences.
- The corpus does not include multimodal evidence such as tables or images.
- The dataset focuses on open-domain factual verification and does not cover social media misinformation.
---
# Citation
If you use ViWikiFC in your work, please cite:
```bibtex
@inproceedings{le-etal-2026-viwikifc,
title = "{V}i{W}iki{FC}: Fact-Checking for {V}ietnamese {W}ikipedia-Based Textual Knowledge Source",
author = "Le, Hung Tuan and
To, Long Truong and
Nguyen, Manh Trong and
Nguyen, Kiet Van",
editor = "Piperidis, Stelios and
Bel, N{\'u}ria and
van den Heuvel, Henk and
Ide, Nancy and
Krek, Simon and
Toral, Antonio",
booktitle = "Proceedings of the Fifteenth Language Resources and Evaluation Conference",
month = may,
year = "2026",
address = "Palma de Mallorca, Spain",
publisher = "ELRA Language Resource Association",
url = "https://aclanthology.org/2026.lrec-1.869/",
doi = "10.63317/5ew98tfds6jc",
pages = "11125--11140",
abstract = "Fact-checking is essential due to the explosion of misinformation in the media ecosystem. Although false information exists in every language and country, most research to solve the problem has mainly concentrated on huge communities like English and Chinese. Low-resource languages like Vietnamese are necessary to explore corpora and models for fact verification. To bridge this gap, we construct ViWikiFC, the first manually annotated open-domain corpus for \textbf{Vi}etnamese \textbf{Wiki}pedia \textbf{F}act \textbf{C}hecking more than 20K claims generated by converting evidence sentences extracted from Wikipedia articles. We analyze our corpus through many linguistic aspects, from the new dependency rate, the new n-gram rate, and the new word rate. We conducted various experiments for Vietnamese fact-checking, including evidence retrieval and verdict prediction. BM25 and InfoXLM$_{Large}$ achieved the best results in two tasks, with BM25 achieving an accuracy of 88.30{\%} for SUPPORTS, 86.93{\%} for REFUTES, and only 56.67{\%} for the NEI label in the evidence retrieval task. InfoXLM$_{Large}$ achieved an F$_1$ score of 86.51{\%}. Furthermore, we also conducted a pipeline approach, which only achieved a strict accuracy of 67.00{\%} when using InfoXLM$_{Large}$ and BM25. These results demonstrate that our dataset is challenging for the Vietnamese language model in fact-checking tasks."
}
```
---
# License
This dataset is released under the **CC BY 4.0** License unless otherwise specified.
---
# Acknowledgements
This research was supported by **Vietnam National University Ho Chi Minh City (VNU-HCM)** under grant **DS2025-26-01**.
We sincerely thank all annotators for their valuable contributions to the creation of this corpus. |