Datasets:

Languages:
English
ArXiv:
License:
holylovenia commited on
Commit
75643e2
·
verified ·
1 Parent(s): ff1efae

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +81 -0
README.md ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: mit
4
+ language:
5
+ - eng
6
+ pretty_name: Men
7
+ task_categories:
8
+ - relation-extraction
9
+ - named-entity-recognition
10
+ tags:
11
+ - relation-extraction
12
+ - named-entity-recognition
13
+ ---
14
+
15
+ The Malaysian English News (MEN) dataset includes 200 Malaysian English news article with human annotated entities and relations (in total 6,061 entities and 3,268 relation instances).
16
+ Malaysian English combines elements of standard English with Malay, Chinese, and Indian languages. Four human annotators were split into 2 groups, each group annotated 100 news articles
17
+ and inter-annotator agreement was calculated between 2 or more annotators working on the same task (entity annotation; F1-score 0.82, relation annotation; F1-score 0.51).
18
+
19
+
20
+ ## Languages
21
+
22
+ eng
23
+
24
+ ## Supported Tasks
25
+
26
+ Relation Extraction, Named Entity Recognition
27
+
28
+ ## Dataset Usage
29
+ ### Using `datasets` library
30
+ ```
31
+ from datasets import load_dataset
32
+ dset = datasets.load_dataset("SEACrowd/men", trust_remote_code=True)
33
+ ```
34
+ ### Using `seacrowd` library
35
+ ```import seacrowd as sc
36
+ # Load the dataset using the default config
37
+ dset = sc.load_dataset("men", schema="seacrowd")
38
+ # Check all available subsets (config names) of the dataset
39
+ print(sc.available_config_names("men"))
40
+ # Load the dataset using a specific config
41
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
42
+ ```
43
+
44
+ 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).
45
+
46
+
47
+ ## Dataset Homepage
48
+
49
+ [https://github.com/mohanraj-nlp/MEN-Dataset/tree/main](https://github.com/mohanraj-nlp/MEN-Dataset/tree/main)
50
+
51
+ ## Dataset Version
52
+
53
+ Source: 1.0.0. SEACrowd: 2024.06.20.
54
+
55
+ ## Dataset License
56
+
57
+ MIT (mit)
58
+
59
+ ## Citation
60
+
61
+ If you are using the **Men** dataloader in your work, please cite the following:
62
+ ```
63
+ @misc{chanthran2024malaysian,
64
+ title={Malaysian English News Decoded: A Linguistic Resource for Named Entity and Relation Extraction},
65
+ author={Mohan Raj Chanthran and Lay-Ki Soon and Huey Fang Ong and Bhawani Selvaretnam},
66
+ year={2024},
67
+ eprint={2402.14521},
68
+ archivePrefix={arXiv},
69
+ primaryClass={cs.CL}
70
+ }
71
+
72
+
73
+ @article{lovenia2024seacrowd,
74
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
75
+ 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},
76
+ year={2024},
77
+ eprint={2406.10118},
78
+ journal={arXiv preprint arXiv: 2406.10118}
79
+ }
80
+
81
+ ```