holylovenia commited on
Commit
191099c
1 Parent(s): c084812

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +53 -17
README.md CHANGED
@@ -1,21 +1,59 @@
 
1
  ---
2
- license: cc-by-4.0
3
- tags:
4
- - named-entity-recognition
5
- language:
6
  - ind
 
 
 
 
 
7
  ---
8
 
9
- # indolem_ner_ugm
10
-
11
  NER UGM is a Named Entity Recognition dataset that comprises 2,343 sentences from news articles, and was constructed at the University of Gajah Mada based on five named entity classes: person, organization, location, time, and quantity.
12
 
 
 
 
 
 
 
 
 
 
13
  ## Dataset Usage
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
 
15
- Run `pip install nusacrowd` before loading the dataset through HuggingFace's `load_dataset`.
 
 
 
 
 
 
 
 
16
 
17
  ## Citation
18
 
 
19
  ```
20
  @inproceedings{koto-etal-2020-indolem,
21
  title = "{I}ndo{LEM} and {I}ndo{BERT}: A Benchmark Dataset and Pre-trained Language Model for {I}ndonesian {NLP}",
@@ -38,16 +76,14 @@ Run `pip install nusacrowd` before loading the dataset through HuggingFace's `lo
38
  year = {2014},
39
  school = {Universitas Gadjah Mada}
40
  }
41
- ```
42
 
43
- ## License
44
 
45
- Creative Commons Attribution 4.0
46
-
47
- ## Homepage
48
-
49
- [https://indolem.github.io/](https://indolem.github.io/)
50
-
51
- ### NusaCatalogue
52
 
53
- 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: Indolem Ner Ugm
6
+ task_categories:
7
+ - named-entity-recognition
8
+ tags:
9
+ - named-entity-recognition
10
  ---
11
 
 
 
12
  NER UGM is a Named Entity Recognition dataset that comprises 2,343 sentences from news articles, and was constructed at the University of Gajah Mada based on five named entity classes: person, organization, location, time, and quantity.
13
 
14
+
15
+ ## Languages
16
+
17
+ ind
18
+
19
+ ## Supported Tasks
20
+
21
+ Named Entity Recognition
22
+
23
  ## Dataset Usage
24
+ ### Using `datasets` library
25
+ ```
26
+ from datasets import load_dataset
27
+ dset = datasets.load_dataset("SEACrowd/indolem_ner_ugm", trust_remote_code=True)
28
+ ```
29
+ ### Using `seacrowd` library
30
+ ```import seacrowd as sc
31
+ # Load the dataset using the default config
32
+ dset = sc.load_dataset("indolem_ner_ugm", schema="seacrowd")
33
+ # Check all available subsets (config names) of the dataset
34
+ print(sc.available_config_names("indolem_ner_ugm"))
35
+ # Load the dataset using a specific config
36
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
37
+ ```
38
+
39
+ 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).
40
+
41
+
42
+ ## Dataset Homepage
43
 
44
+ [https://indolem.github.io/](https://indolem.github.io/)
45
+
46
+ ## Dataset Version
47
+
48
+ Source: 1.0.0. SEACrowd: 2024.06.20.
49
+
50
+ ## Dataset License
51
+
52
+ Creative Commons Attribution 4.0
53
 
54
  ## Citation
55
 
56
+ If you are using the **Indolem Ner Ugm** dataloader in your work, please cite the following:
57
  ```
58
  @inproceedings{koto-etal-2020-indolem,
59
  title = "{I}ndo{LEM} and {I}ndo{BERT}: A Benchmark Dataset and Pre-trained Language Model for {I}ndonesian {NLP}",
 
76
  year = {2014},
77
  school = {Universitas Gadjah Mada}
78
  }
 
79
 
 
80
 
81
+ @article{lovenia2024seacrowd,
82
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
83
+ 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},
84
+ year={2024},
85
+ eprint={2406.10118},
86
+ journal={arXiv preprint arXiv: 2406.10118}
87
+ }
88
 
89
+ ```