Datasets:

Languages:
Chavacano
ArXiv:
License:
holylovenia commited on
Commit
edf66af
1 Parent(s): bbc53ef

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +77 -0
README.md ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: cc-by-sa-4.0
4
+ language:
5
+ - cbk
6
+ pretty_name: Creole Rc
7
+ task_categories:
8
+ - relation-extraction
9
+ tags:
10
+ - relation-extraction
11
+ ---
12
+
13
+ CreoleRC is a subset created by the CreoleVal paper. Relation classification (RC) aims to identify semantic associations between entities within a text, essential for applications like knowledge base completion and question answering. The dataset is sourced from Wikipedia and manually annotated. CreoleRC contains 5 creoles, but SEACrowd is interested specifically in the Chavacano subset.
14
+
15
+
16
+ ## Languages
17
+
18
+ cbk
19
+
20
+ ## Supported Tasks
21
+
22
+ Relation Extraction
23
+
24
+ ## Dataset Usage
25
+ ### Using `datasets` library
26
+ ```
27
+ from datasets import load_dataset
28
+ dset = datasets.load_dataset("SEACrowd/creole_rc", trust_remote_code=True)
29
+ ```
30
+ ### Using `seacrowd` library
31
+ ```import seacrowd as sc
32
+ # Load the dataset using the default config
33
+ dset = sc.load_dataset("creole_rc", schema="seacrowd")
34
+ # Check all available subsets (config names) of the dataset
35
+ print(sc.available_config_names("creole_rc"))
36
+ # Load the dataset using a specific config
37
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
38
+ ```
39
+
40
+ 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).
41
+
42
+
43
+ ## Dataset Homepage
44
+
45
+ [https://github.com/hclent/CreoleVal/tree/main/nlu/relation_classification](https://github.com/hclent/CreoleVal/tree/main/nlu/relation_classification)
46
+
47
+ ## Dataset Version
48
+
49
+ Source: 1.0.0. SEACrowd: 2024.06.20.
50
+
51
+ ## Dataset License
52
+
53
+ Creative Commons Attribution Share Alike 4.0 (cc-by-sa-4.0)
54
+
55
+ ## Citation
56
+
57
+ If you are using the **Creole Rc** dataloader in your work, please cite the following:
58
+ ```
59
+ @misc{lent2023creoleval,
60
+ title={CreoleVal: Multilingual Multitask Benchmarks for Creoles},
61
+ author={Heather Lent and Kushal Tatariya and Raj Dabre and Yiyi Chen and Marcell Fekete and Esther Ploeger and Li Zhou and Hans Erik Heje and Diptesh Kanojia and Paul Belony and Marcel Bollmann and Loïc Grobol and Miryam de Lhoneux and Daniel Hershcovich and Michel DeGraff and Anders Søgaard and Johannes Bjerva},
62
+ year={2023},
63
+ eprint={2310.19567},
64
+ archivePrefix={arXiv},
65
+ primaryClass={cs.CL}
66
+ }
67
+
68
+
69
+ @article{lovenia2024seacrowd,
70
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
71
+ 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},
72
+ year={2024},
73
+ eprint={2406.10118},
74
+ journal={arXiv preprint arXiv: 2406.10118}
75
+ }
76
+
77
+ ```