holylovenia commited on
Commit
60ba43b
1 Parent(s): 3ad4ab9

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +53 -17
README.md CHANGED
@@ -1,8 +1,6 @@
 
1
  ---
2
- license: mit
3
- tags:
4
- - fact-checking
5
- language:
6
  - ara
7
  - aze
8
  - ben
@@ -28,18 +26,58 @@ language:
28
  - sqi
29
  - tam
30
  - tur
 
 
 
 
 
31
  ---
32
 
33
- # x_fact
34
-
35
  X-FACT: the largest publicly available multilingual dataset for factual verification of naturally existing realworld claims.
36
 
 
 
 
 
 
 
 
 
 
37
  ## Dataset Usage
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
 
39
- Run `pip install nusacrowd` before loading the dataset through HuggingFace's `load_dataset`.
 
 
 
 
 
 
 
 
40
 
41
  ## Citation
42
 
 
43
  ```
44
  @inproceedings{gupta2021xfact,
45
  title={{X-FACT: A New Benchmark Dataset for Multilingual Fact Checking}},
@@ -50,16 +88,14 @@ Run `pip install nusacrowd` before loading the dataset through HuggingFace's `lo
50
  address = "Online",
51
  publisher = "Association for Computational Linguistics",
52
  }
53
- ```
54
 
55
- ## License
56
 
57
- MIT
58
-
59
- ## Homepage
60
-
61
- [https://github.com/utahnlp/x-fact](https://github.com/utahnlp/x-fact)
62
-
63
- ### NusaCatalogue
64
 
65
- For easy indexing and metadata: [https://indonlp.github.io/nusa-catalogue](https://indonlp.github.io/nusa-catalogue)
 
1
+
2
  ---
3
+ language:
 
 
 
4
  - ara
5
  - aze
6
  - ben
 
26
  - sqi
27
  - tam
28
  - tur
29
+ pretty_name: X Fact
30
+ task_categories:
31
+ - fact-checking
32
+ tags:
33
+ - fact-checking
34
  ---
35
 
 
 
36
  X-FACT: the largest publicly available multilingual dataset for factual verification of naturally existing realworld claims.
37
 
38
+
39
+ ## Languages
40
+
41
+ ara, aze, ben, deu, spa, fas, fra, guj, hin, ind, ita, kat, mar, nor, nld, pan, pol, por, ron, rus, sin, srp, sqi, tam, tur
42
+
43
+ ## Supported Tasks
44
+
45
+ Fact Checking
46
+
47
  ## Dataset Usage
48
+ ### Using `datasets` library
49
+ ```
50
+ from datasets import load_dataset
51
+ dset = datasets.load_dataset("SEACrowd/x_fact", trust_remote_code=True)
52
+ ```
53
+ ### Using `seacrowd` library
54
+ ```import seacrowd as sc
55
+ # Load the dataset using the default config
56
+ dset = sc.load_dataset("x_fact", schema="seacrowd")
57
+ # Check all available subsets (config names) of the dataset
58
+ print(sc.available_config_names("x_fact"))
59
+ # Load the dataset using a specific config
60
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
61
+ ```
62
+
63
+ More details on how to load the `seacrowd` library can be found [here](https://github.com/SEACrowd/seacrowd-datahub?tab=readme-ov-file#how-to-use).
64
+
65
+
66
+ ## Dataset Homepage
67
 
68
+ [https://github.com/utahnlp/x-fact](https://github.com/utahnlp/x-fact)
69
+
70
+ ## Dataset Version
71
+
72
+ Source: 1.0.0. SEACrowd: 2024.06.20.
73
+
74
+ ## Dataset License
75
+
76
+ MIT
77
 
78
  ## Citation
79
 
80
+ If you are using the **X Fact** dataloader in your work, please cite the following:
81
  ```
82
  @inproceedings{gupta2021xfact,
83
  title={{X-FACT: A New Benchmark Dataset for Multilingual Fact Checking}},
 
88
  address = "Online",
89
  publisher = "Association for Computational Linguistics",
90
  }
 
91
 
 
92
 
93
+ @article{lovenia2024seacrowd,
94
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
95
+ author={Holy Lovenia and Rahmad Mahendra and Salsabil Maulana Akbar and Lester James V. Miranda and Jennifer Santoso and Elyanah Aco and Akhdan Fadhilah and Jonibek Mansurov and Joseph Marvin Imperial and Onno P. Kampman and Joel Ruben Antony Moniz and Muhammad Ravi Shulthan Habibi and Frederikus Hudi and Railey Montalan and Ryan Ignatius and Joanito Agili Lopo and William Nixon and Börje F. Karlsson and James Jaya and Ryandito Diandaru and Yuze Gao and Patrick Amadeus and Bin Wang and Jan Christian Blaise Cruz and Chenxi Whitehouse and Ivan Halim Parmonangan and Maria Khelli and Wenyu Zhang and Lucky Susanto and Reynard Adha Ryanda and Sonny Lazuardi Hermawan and Dan John Velasco and Muhammad Dehan Al Kautsar and Willy Fitra Hendria and Yasmin Moslem and Noah Flynn and Muhammad Farid Adilazuarda and Haochen Li and Johanes Lee and R. Damanhuri and Shuo Sun and Muhammad Reza Qorib and Amirbek Djanibekov and Wei Qi Leong and Quyet V. Do and Niklas Muennighoff and Tanrada Pansuwan and Ilham Firdausi Putra and Yan Xu and Ngee Chia Tai and Ayu Purwarianti and Sebastian Ruder and William Tjhi and Peerat Limkonchotiwat and Alham Fikri Aji and Sedrick Keh and Genta Indra Winata and Ruochen Zhang and Fajri Koto and Zheng-Xin Yong and Samuel Cahyawijaya},
96
+ year={2024},
97
+ eprint={2406.10118},
98
+ journal={arXiv preprint arXiv: 2406.10118}
99
+ }
100
 
101
+ ```