holylovenia commited on
Commit
8911bdc
·
verified ·
1 Parent(s): 975c0d3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +67 -31
README.md CHANGED
@@ -1,52 +1,90 @@
 
1
  ---
2
- tags:
3
- - named-entity-recognition
4
- language:
5
  - ind
6
- - eng
7
  - jav
8
  - min
9
  - sun
10
  - ace
11
- - mly
 
 
 
 
 
 
 
 
 
 
12
  ---
13
 
14
- # wikiann
15
-
16
  The wikiann dataset contains NER tags with labels from O (0), B-PER (1), I-PER (2), B-ORG (3), I-ORG (4), B-LOC (5), I-LOC (6). The Indonesian subset is used.
17
-
18
  WikiANN (sometimes called PAN-X) is a multilingual named entity recognition dataset consisting of Wikipedia articles
19
-
20
  annotated with LOC (location), PER (person), and ORG (organisation)
21
-
22
  tags in the IOB2 format. This version corresponds to the balanced train, dev, and test splits of
23
-
24
  Rahimi et al. (2019), and uses the following subsets from the original WikiANN corpus
25
 
26
-
27
-
28
  Language WikiAnn ISO 639-3
29
-
30
  Indonesian id ind
31
-
32
  Javanese jv jav
33
-
34
  Minangkabau min min
35
-
36
  Sundanese su sun
37
-
38
  Acehnese ace ace
 
 
 
 
 
 
 
 
39
 
40
- Malay ms mly
41
 
42
- Banyumasan map-bms map-bms
43
 
 
 
 
 
 
 
 
 
44
  ## Dataset Usage
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
 
46
- Run `pip install nusacrowd` before loading the dataset through HuggingFace's `load_dataset`.
 
 
 
 
 
 
47
 
48
  ## Citation
49
 
 
50
  ```
51
  @inproceedings{pan-etal-2017-cross,
52
  title = "Cross-lingual Name Tagging and Linking for 282 Languages",
@@ -88,16 +126,14 @@ Run `pip install nusacrowd` before loading the dataset through HuggingFace's `lo
88
  url = "https://www.aclweb.org/anthology/P19-1015",
89
  pages = "151--164",
90
  }
91
- ```
92
-
93
- ## License
94
 
95
- Apache-2.0 license
96
 
97
- ## Homepage
98
-
99
- [https://github.com/afshinrahimi/mmner](https://github.com/afshinrahimi/mmner)
100
-
101
- ### NusaCatalogue
 
 
102
 
103
- For easy indexing and metadata: [https://indonlp.github.io/nusa-catalogue](https://indonlp.github.io/nusa-catalogue)
 
1
+
2
  ---
3
+ license: apache-2.0
4
+ language:
 
5
  - ind
 
6
  - jav
7
  - min
8
  - sun
9
  - ace
10
+ - zlm
11
+ - mya
12
+ - tgl
13
+ - tha
14
+ - vie
15
+ - khm
16
+ pretty_name: Wikiann
17
+ task_categories:
18
+ - named-entity-recognition
19
+ tags:
20
+ - named-entity-recognition
21
  ---
22
 
 
 
23
  The wikiann dataset contains NER tags with labels from O (0), B-PER (1), I-PER (2), B-ORG (3), I-ORG (4), B-LOC (5), I-LOC (6). The Indonesian subset is used.
 
24
  WikiANN (sometimes called PAN-X) is a multilingual named entity recognition dataset consisting of Wikipedia articles
 
25
  annotated with LOC (location), PER (person), and ORG (organisation)
 
26
  tags in the IOB2 format. This version corresponds to the balanced train, dev, and test splits of
 
27
  Rahimi et al. (2019), and uses the following subsets from the original WikiANN corpus
28
 
 
 
29
  Language WikiAnn ISO 639-3
 
30
  Indonesian id ind
 
31
  Javanese jv jav
 
32
  Minangkabau min min
 
33
  Sundanese su sun
 
34
  Acehnese ace ace
35
+ Malay ms zlm
36
+ Banyumasan map-bms map-bms
37
+ Myanmar my mya
38
+ Tagalog tl tgl
39
+ Thailand th tha
40
+ Vietnam vi vie
41
+ Khmer km khm
42
+
43
 
 
44
 
 
45
 
46
+ ## Languages
47
+
48
+ ind, jav, min, sun, ace, zlm, map-bms, mya, tgl, tha, vie, khm
49
+
50
+ ## Supported Tasks
51
+
52
+ Named Entity Recognition
53
+
54
  ## Dataset Usage
55
+ ### Using `datasets` library
56
+ ```
57
+ from datasets import load_dataset
58
+ dset = datasets.load_dataset("SEACrowd/wikiann", trust_remote_code=True)
59
+ ```
60
+ ### Using `seacrowd` library
61
+ ```import seacrowd as sc
62
+ # Load the dataset using the default config
63
+ dset = sc.load_dataset("wikiann", schema="seacrowd")
64
+ # Check all available subsets (config names) of the dataset
65
+ print(sc.available_config_names("wikiann"))
66
+ # Load the dataset using a specific config
67
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
68
+ ```
69
+
70
+ 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).
71
+
72
+
73
+ ## Dataset Homepage
74
+
75
+ [https://github.com/afshinrahimi/mmner](https://github.com/afshinrahimi/mmner)
76
 
77
+ ## Dataset Version
78
+
79
+ Source: 1.1.0. SEACrowd: 2024.06.20.
80
+
81
+ ## Dataset License
82
+
83
+ Apache license 2.0 (apache-2.0)
84
 
85
  ## Citation
86
 
87
+ If you are using the **Wikiann** dataloader in your work, please cite the following:
88
  ```
89
  @inproceedings{pan-etal-2017-cross,
90
  title = "Cross-lingual Name Tagging and Linking for 282 Languages",
 
126
  url = "https://www.aclweb.org/anthology/P19-1015",
127
  pages = "151--164",
128
  }
 
 
 
129
 
 
130
 
131
+ @article{lovenia2024seacrowd,
132
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
133
+ 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},
134
+ year={2024},
135
+ eprint={2406.10118},
136
+ journal={arXiv preprint arXiv: 2406.10118}
137
+ }
138
 
139
+ ```