holylovenia commited on
Commit
85ed762
1 Parent(s): 7fa8708

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +54 -18
README.md CHANGED
@@ -1,27 +1,65 @@
 
1
  ---
2
- tags:
3
- - question-answering
4
- language:
5
  - ind
 
 
 
 
 
6
  ---
7
 
8
- # facqa
9
 
10
  FacQA: The goal of the FacQA dataset is to find the answer to a question from a provided short passage from a news article.
11
-
12
  Each row in the FacQA dataset consists of a question, a short passage, and a label phrase, which can be found inside the
13
-
14
  corresponding short passage. There are six categories of questions: date, location, name,
15
-
16
  organization, person, and quantitative.
17
 
 
 
 
 
 
 
 
 
 
18
  ## Dataset Usage
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
- Run `pip install nusacrowd` before loading the dataset through HuggingFace's `load_dataset`.
 
 
 
 
 
 
 
 
 
 
21
 
22
  ## Citation
23
 
 
24
  ```
 
25
  @inproceedings{purwarianti2007machine,
26
  title={A Machine Learning Approach for Indonesian Question Answering System},
27
  author={Ayu Purwarianti, Masatoshi Tsuchiya, and Seiichi Nakagawa},
@@ -29,16 +67,14 @@ Run `pip install nusacrowd` before loading the dataset through HuggingFace's `lo
29
  pages={573--578},
30
  year={2007}
31
  }
32
- ```
33
-
34
- ## License
35
-
36
- CC-BY-SA 4.0
37
 
38
- ## Homepage
39
 
40
- [https://github.com/IndoNLP/indonlu](https://github.com/IndoNLP/indonlu)
41
-
42
- ### NusaCatalogue
 
 
 
 
43
 
44
- For easy indexing and metadata: [https://indonlp.github.io/nusa-catalogue](https://indonlp.github.io/nusa-catalogue)
 
1
+
2
  ---
3
+ language:
 
 
4
  - ind
5
+ pretty_name: Facqa
6
+ task_categories:
7
+ - question-answering
8
+ tags:
9
+ - question-answering
10
  ---
11
 
 
12
 
13
  FacQA: The goal of the FacQA dataset is to find the answer to a question from a provided short passage from a news article.
 
14
  Each row in the FacQA dataset consists of a question, a short passage, and a label phrase, which can be found inside the
 
15
  corresponding short passage. There are six categories of questions: date, location, name,
 
16
  organization, person, and quantitative.
17
 
18
+
19
+ ## Languages
20
+
21
+ ind
22
+
23
+ ## Supported Tasks
24
+
25
+ Question Answering
26
+
27
  ## Dataset Usage
28
+ ### Using `datasets` library
29
+ ```
30
+ from datasets import load_dataset
31
+ dset = datasets.load_dataset("SEACrowd/facqa", trust_remote_code=True)
32
+ ```
33
+ ### Using `seacrowd` library
34
+ ```import seacrowd as sc
35
+ # Load the dataset using the default config
36
+ dset = sc.load_dataset("facqa", schema="seacrowd")
37
+ # Check all available subsets (config names) of the dataset
38
+ print(sc.available_config_names("facqa"))
39
+ # Load the dataset using a specific config
40
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
41
+ ```
42
+
43
+ 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).
44
+
45
 
46
+ ## Dataset Homepage
47
+
48
+ [https://github.com/IndoNLP/indonlu](https://github.com/IndoNLP/indonlu)
49
+
50
+ ## Dataset Version
51
+
52
+ Source: 1.0.0. SEACrowd: 2024.06.20.
53
+
54
+ ## Dataset License
55
+
56
+ CC-BY-SA 4.0
57
 
58
  ## Citation
59
 
60
+ If you are using the **Facqa** dataloader in your work, please cite the following:
61
  ```
62
+
63
  @inproceedings{purwarianti2007machine,
64
  title={A Machine Learning Approach for Indonesian Question Answering System},
65
  author={Ayu Purwarianti, Masatoshi Tsuchiya, and Seiichi Nakagawa},
 
67
  pages={573--578},
68
  year={2007}
69
  }
 
 
 
 
 
70
 
 
71
 
72
+ @article{lovenia2024seacrowd,
73
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
74
+ 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},
75
+ year={2024},
76
+ eprint={2406.10118},
77
+ journal={arXiv preprint arXiv: 2406.10118}
78
+ }
79
 
80
+ ```