holylovenia commited on
Commit
0eae33f
1 Parent(s): 98866ab

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +82 -0
README.md ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: bsd-3-clause-clear
4
+ language:
5
+ - ind
6
+ pretty_name: Bioner Id
7
+ task_categories:
8
+ - named-entity-recognition
9
+ tags:
10
+ - named-entity-recognition
11
+ ---
12
+
13
+ This dataset taken from online health consultation platform Alodokter.com which has been annotated by two medical doctors. Data were annotated using IOB in CoNLL format.
14
+
15
+ Dataset contains 2600 medical answers by doctors from 2017-2020. Two medical experts were assigned to annotate the data into two entity types: DISORDERS and ANATOMY.
16
+ The topics of answers are: diarrhea, HIV-AIDS, nephrolithiasis and TBC, which marked as high-risk dataset from WHO.
17
+
18
+
19
+ ## Languages
20
+
21
+ ind
22
+
23
+ ## Supported Tasks
24
+
25
+ Named Entity Recognition
26
+
27
+ ## Dataset Usage
28
+ ### Using `datasets` library
29
+ ```
30
+ from datasets import load_dataset
31
+ dset = datasets.load_dataset("SEACrowd/bioner_id", trust_remote_code=True)
32
+ ```
33
+ ### Using `seacrowd` library
34
+ ```import seacrowd as sc
35
+ # Load the dataset using the default config
36
+ dset = sc.load_dataset("bioner_id", schema="seacrowd")
37
+ # Check all available subsets (config names) of the dataset
38
+ print(sc.available_config_names("bioner_id"))
39
+ # Load the dataset using a specific config
40
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
41
+ ```
42
+
43
+ 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).
44
+
45
+
46
+ ## Dataset Homepage
47
+
48
+ [https://huggingface.co/datasets/abid/indonesia-bioner-dataset](https://huggingface.co/datasets/abid/indonesia-bioner-dataset)
49
+
50
+ ## Dataset Version
51
+
52
+ Source: 1.0.0. SEACrowd: 2024.06.20.
53
+
54
+ ## Dataset License
55
+
56
+ BSD 3-clause Clear license (bsd-3-clause-clear)
57
+
58
+ ## Citation
59
+
60
+ If you are using the **Bioner Id** dataloader in your work, please cite the following:
61
+ ```
62
+ @article{abdillah2023pengenalan,
63
+ title={Pengenalan Entitas Biomedis dalam Teks Konsultasi Kesehatan Online Berbahasa Indonesia Berbasis Arsitektur Transformers},
64
+ author={Abdillah, Abid Famasya and Purwitasari, Diana and Juanita, Safitri and Purnomo, Mauridhi Hery},
65
+ year={2023},
66
+ month=feb,
67
+ journal={Jurnal Teknologi Informasi dan Ilmu Komputer},
68
+ volume={10},
69
+ number={1},
70
+ pages={131--140}
71
+ }
72
+
73
+
74
+ @article{lovenia2024seacrowd,
75
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
76
+ 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},
77
+ year={2024},
78
+ eprint={2406.10118},
79
+ journal={arXiv preprint arXiv: 2406.10118}
80
+ }
81
+
82
+ ```