Create README.md
Browse files# Fact-Check Retrieval Dataset
This dataset is designed to support the development and evaluation of fact-check retrieval pipelines. It is structured to work with [FactCheckBureau](https://gitlab.inria.fr/cedar/factcheckbureau), a tool for designing and evaluating fact-check retrieval pipelines. The dataset comprises a list of claims, fact-check articles, and precomputed embeddings for English and French fact-checks.
## Dataset Structure
The dataset consists of the following files and directories:
- **`articles.csv`**: Contains titles and URLs of fact-check articles. *(Note: The `body` column is currently empty; users must scrape or collect the article content themselves using the provided URLs.)*
- **`claims.csv`**: Contains a list of claims that have been fact-checked.
- **`claim_reviews.csv`**: Contains (claim, fact-check-article) pairs, along with metadata such as review date, publisher, and rating.
- **`embeddings/`**: Directory containing precomputed embeddings for English and French fact-checks.
- **`English.pt`**: Embeddings for English fact-checks, generated using the `sentence-transformers/all-mpnet-base-v2` model.
- **`French.pt`**: Embeddings for French fact-checks, generated using the `sentence-transformers/paraphrase-multilingual-mpnet-base-v2` model.
- **`index/`**: Directory containing the IDs corresponding to English and French fact-checks.
- **`full_dataset/`**: Directory containing the full dataset that we have collected, which includes:
- **`claims.csv`**: Full list of claims that have been fact-checked.
- **`articles.csv`**: Full list of fact-check articles, containing titles and URLs. The users will need to collect the articles for themselves.
- **`claim_reviews.csv`**: Full set of (claim, fact-check-article) pairs, with a total of 230k pairs. This is the comprehensive Claim Reviews data that has been collected.
## Usage
The files outside of the `full_dataset/` directory are specifically curated for conducting experiments and developing the `FactCheckBureau` application. These files include the necessary embeddings and BM25 objects ([fact-check-bureau](https://huggingface.co/NaughtyConstrictor/fact-check-bureau)) to facilitate the development and evaluation of fact-check retrieval pipelines.
The `full_dataset/` directory contains the entire set of data collected, which includes all claims and fact-check articles. Users can utilize this larger dataset for extensive analysis, research, and further development.
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc-by-4.0
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
- fr
|
6 |
+
- pt
|
7 |
+
- es
|
8 |
+
- ar
|
9 |
+
- hi
|
10 |
+
- tr
|
11 |
+
- it
|
12 |
+
- pl
|
13 |
+
- de
|
14 |
+
- ru
|
15 |
+
- nl
|
16 |
+
- ko
|
17 |
+
tags:
|
18 |
+
- fact-checking
|
19 |
+
- information-retrieval
|
20 |
+
---
|