holylovenia commited on
Commit
af52bff
1 Parent(s): 9f2e9f1

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +62 -43
README.md CHANGED
@@ -1,78 +1,97 @@
 
1
  ---
2
- license: mit
3
- tags:
4
- - coreference-resolution
5
- language:
6
  - ind
 
 
 
 
 
7
  ---
8
 
9
- # indocoref
10
-
11
  Dataset contains articles from Wikipedia Bahasa Indonesia which fulfill these conditions:
12
-
13
  - The pages contain many noun phrases, which the authors subjectively pick: (i) fictional plots, e.g., subtitles for films,
14
-
15
  TV show episodes, and novel stories; (ii) biographies (incl. fictional characters); and (iii) historical events or important events.
16
-
17
  - The pages contain significant variation of pronoun and named-entity. We count the number of first, second, third person pronouns,
18
-
19
  and clitic pronouns in the document by applying string matching.We examine the number
20
-
21
  of named-entity using the Stanford CoreNLP
22
-
23
  NER Tagger (Manning et al., 2014) with a
24
-
25
  model trained from the Indonesian corpus
26
-
27
  taken from Alfina et al. (2016).
28
-
29
  The Wikipedia texts have length of 500 to
30
-
31
  2000 words.
32
-
33
  We sample 201 of pages from subset of filtered
34
-
35
  Wikipedia pages. We hire five annotators who are
36
-
37
  undergraduate student in Linguistics department.
38
-
39
  They are native in Indonesian. Annotation is carried out using the Script d’Annotation des Chanes
40
-
41
  de Rfrence (SACR), a web-based Coreference resolution annotation tool developed by Oberle (2018).
42
-
43
  From the 201 texts, there are 16,460 mentions
44
-
45
  tagged by the annotators
46
 
47
- ## Dataset Usage
48
 
49
- Run `pip install nusacrowd` before loading the dataset through HuggingFace's `load_dataset`.
50
 
51
- ## Citation
52
 
 
 
 
 
 
 
53
  ```
54
- @inproceedings{artari-etal-2021-multi,
55
- title = {A Multi-Pass Sieve Coreference Resolution for {I}ndonesian},
56
- author = {Artari, Valentina Kania Prameswara and Mahendra, Rahmad and Jiwanggi, Meganingrum Arista and Anggraito, Adityo and Budi, Indra},
57
- year = 2021,
58
- month = sep,
59
- booktitle = {Proceedings of the International Conference on Recent Advances in Natural Language Processing (RANLP 2021)},
60
- publisher = {INCOMA Ltd.},
61
- address = {Held Online},
62
- pages = {79--85},
63
- url = {https://aclanthology.org/2021.ranlp-1.10},
64
- abstract = {Coreference resolution is an NLP task to find out whether the set of referring expressions belong to the same concept in discourse. A multi-pass sieve is a deterministic coreference model that implements several layers of sieves, where each sieve takes a pair of correlated mentions from a collection of non-coherent mentions. The multi-pass sieve is based on the principle of high precision, followed by increased recall in each sieve. In this work, we examine the portability of the multi-pass sieve coreference resolution model to the Indonesian language. We conduct the experiment on 201 Wikipedia documents and the multi-pass sieve system yields 72.74{\%} of MUC F-measure and 52.18{\%} of BCUBED F-measure.}
65
- }
66
  ```
 
 
 
 
 
 
 
 
 
 
 
67
 
68
- ## License
69
 
70
  MIT
71
 
72
- ## Homepage
73
 
74
- [https://github.com/valentinakania/indocoref/](https://github.com/valentinakania/indocoref/)
 
 
 
 
 
 
 
 
 
 
 
 
 
75
 
76
- ### NusaCatalogue
77
 
78
- 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: Indocoref
6
+ task_categories:
7
+ - coreference-resolution
8
+ tags:
9
+ - coreference-resolution
10
  ---
11
 
 
 
12
  Dataset contains articles from Wikipedia Bahasa Indonesia which fulfill these conditions:
 
13
  - The pages contain many noun phrases, which the authors subjectively pick: (i) fictional plots, e.g., subtitles for films,
 
14
  TV show episodes, and novel stories; (ii) biographies (incl. fictional characters); and (iii) historical events or important events.
 
15
  - The pages contain significant variation of pronoun and named-entity. We count the number of first, second, third person pronouns,
 
16
  and clitic pronouns in the document by applying string matching.We examine the number
 
17
  of named-entity using the Stanford CoreNLP
 
18
  NER Tagger (Manning et al., 2014) with a
 
19
  model trained from the Indonesian corpus
 
20
  taken from Alfina et al. (2016).
 
21
  The Wikipedia texts have length of 500 to
 
22
  2000 words.
 
23
  We sample 201 of pages from subset of filtered
 
24
  Wikipedia pages. We hire five annotators who are
 
25
  undergraduate student in Linguistics department.
 
26
  They are native in Indonesian. Annotation is carried out using the Script d’Annotation des Chanes
 
27
  de Rfrence (SACR), a web-based Coreference resolution annotation tool developed by Oberle (2018).
 
28
  From the 201 texts, there are 16,460 mentions
 
29
  tagged by the annotators
30
 
 
31
 
32
+ ## Languages
33
 
34
+ ind
35
 
36
+ ## Supported Tasks
37
+
38
+ Coreference Resolution
39
+
40
+ ## Dataset Usage
41
+ ### Using `datasets` library
42
  ```
43
+ from datasets import load_dataset
44
+ dset = datasets.load_dataset("SEACrowd/indocoref", trust_remote_code=True)
45
+ ```
46
+ ### Using `seacrowd` library
47
+ ```import seacrowd as sc
48
+ # Load the dataset using the default config
49
+ dset = sc.load_dataset("indocoref", schema="seacrowd")
50
+ # Check all available subsets (config names) of the dataset
51
+ print(sc.available_config_names("indocoref"))
52
+ # Load the dataset using a specific config
53
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
 
54
  ```
55
+
56
+ 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).
57
+
58
+
59
+ ## Dataset Homepage
60
+
61
+ [https://github.com/valentinakania/indocoref/](https://github.com/valentinakania/indocoref/)
62
+
63
+ ## Dataset Version
64
+
65
+ Source: 1.0.0. SEACrowd: 2024.06.20.
66
 
67
+ ## Dataset License
68
 
69
  MIT
70
 
71
+ ## Citation
72
 
73
+ If you are using the **Indocoref** dataloader in your work, please cite the following:
74
+ ```
75
+ @inproceedings{artari-etal-2021-multi,
76
+ title = {{A Multi-Pass Sieve Coreference Resolution for Indonesian}},
77
+ author = {Artari, Valentina Kania Prameswara and Mahendra, Rahmad and Jiwanggi, Meganingrum Arista and Anggraito, Adityo and Budi, Indra},
78
+ year = 2021,
79
+ month = {Sep},
80
+ booktitle = {Proceedings of the International Conference on Recent Advances in Natural Language Processing (RANLP 2021)},
81
+ publisher = {INCOMA Ltd.},
82
+ address = {Held Online},
83
+ pages = {79--85},
84
+ url = {https://aclanthology.org/2021.ranlp-1.10},
85
+ abstract = {Coreference resolution is an NLP task to find out whether the set of referring expressions belong to the same concept in discourse. A multi-pass sieve is a deterministic coreference model that implements several layers of sieves, where each sieve takes a pair of correlated mentions from a collection of non-coherent mentions. The multi-pass sieve is based on the principle of high precision, followed by increased recall in each sieve. In this work, we examine the portability of the multi-pass sieve coreference resolution model to the Indonesian language. We conduct the experiment on 201 Wikipedia documents and the multi-pass sieve system yields 72.74{\%} of MUC F-measure and 52.18{\%} of BCUBED F-measure.}
86
+ }
87
 
 
88
 
89
+ @article{lovenia2024seacrowd,
90
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
91
+ 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},
92
+ year={2024},
93
+ eprint={2406.10118},
94
+ journal={arXiv preprint arXiv: 2406.10118}
95
+ }
96
+
97
+ ```