NaughtyConstrictor commited on
Commit
567e6d2
·
1 Parent(s): 67e5bb9

Update README

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md CHANGED
@@ -17,4 +17,37 @@ language:
17
  tags:
18
  - fact-checking
19
  - information-retrieval
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  ---
 
17
  tags:
18
  - fact-checking
19
  - information-retrieval
20
+ ---
21
+
22
+ # Fact-Check Retrieval Dataset
23
+
24
+ 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.
25
+
26
+ ## Dataset Structure
27
+
28
+ The dataset consists of the following files and directories:
29
+
30
+ - **`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.)*
31
+
32
+ - **`claims.csv`**: Contains a list of claims that have been fact-checked.
33
+
34
+ - **`claim_reviews.csv`**: Contains (claim, fact-check-article) pairs, along with metadata such as review date, publisher, and rating.
35
+
36
+ - **`embeddings/`**: Directory containing precomputed embeddings for English and French fact-checks.
37
+ - **`English.pt`**: Embeddings for English fact-checks, generated using the `sentence-transformers/all-mpnet-base-v2` model.
38
+ - **`French.pt`**: Embeddings for French fact-checks, generated using the `sentence-transformers/paraphrase-multilingual-mpnet-base-v2` model.
39
+
40
+ - **`index/`**: Directory containing the IDs corresponding to English and French fact-checks.
41
+
42
+ - **`full_dataset/`**: Directory containing the full dataset that we have collected, which includes:
43
+ - **`claims.csv`**: Complete list of claims that have been fact-checked.
44
+ - **`articles.csv`**: Complete list of fact-check articles, containing titles and URLs. *(Note: The users will need to collect the article contents themselves.)*
45
+ - **`claim_reviews.csv`**: Full set of (claim, fact-check-article) pairs, with a total of 230,000 pairs. This is the comprehensive Claim Reviews data that has been collected.
46
+
47
+ ## Usage
48
+
49
+ 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.
50
+
51
+ The `full_dataset/` directory contains the entire set of data collected, including all claims and fact-check articles. Users can utilize this larger dataset for extensive analysis, research, and further development.
52
+
53
  ---