holylovenia commited on
Commit
da46bc9
1 Parent(s): e41e7e9

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +108 -0
README.md ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: cc-by-sa-4.0
4
+ language:
5
+ - ace
6
+ - ban
7
+ - bcl
8
+ - bjn
9
+ - bug
10
+ - cbk
11
+ - gor
12
+ - ilo
13
+ - ind
14
+ - jav
15
+ - khm
16
+ - lao
17
+ - mad
18
+ - min
19
+ - mnw
20
+ - mya
21
+ - nia
22
+ - pag
23
+ - pam
24
+ - shn
25
+ - sun
26
+ - tet
27
+ - tgl
28
+ - tha
29
+ - vie
30
+ - war
31
+ pretty_name: Sea Wiki
32
+ task_categories:
33
+ - self-supervised-pretraining
34
+ - summarization
35
+ tags:
36
+ - self-supervised-pretraining
37
+ - summarization
38
+ ---
39
+
40
+ SEA Lang & Local Langs Wikipedia Archives, dumped from WIkipedia HF and processed by boilerplate removal.
41
+ This dataset consists of URL of referred Wikipedia Article, its Title, and its Text Data (Article Contents).
42
+
43
+
44
+ ## Languages
45
+
46
+ ace, ban, bcl, bjn, bug, cbk, gor, ilo, ind, jav, khm, lao, mad, map_bms, min, mnw, mya, nia, pag, pam, shn, sun, tet, tgl, tha, vie, war
47
+
48
+ ## Supported Tasks
49
+
50
+ Self Supervised Pretraining, Summarization
51
+
52
+ ## Dataset Usage
53
+ ### Using `datasets` library
54
+ ```
55
+ from datasets import load_dataset
56
+ dset = datasets.load_dataset("SEACrowd/sea_wiki", trust_remote_code=True)
57
+ ```
58
+ ### Using `seacrowd` library
59
+ ```import seacrowd as sc
60
+ # Load the dataset using the default config
61
+ dset = sc.load_dataset("sea_wiki", schema="seacrowd")
62
+ # Check all available subsets (config names) of the dataset
63
+ print(sc.available_config_names("sea_wiki"))
64
+ # Load the dataset using a specific config
65
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
66
+ ```
67
+
68
+ 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).
69
+
70
+
71
+ ## Dataset Homepage
72
+
73
+ [https://huggingface.co/datasets/sabilmakbar/sea_wiki](https://huggingface.co/datasets/sabilmakbar/sea_wiki)
74
+
75
+ ## Dataset Version
76
+
77
+ Source: 1.0.0. SEACrowd: 2024.06.20.
78
+
79
+ ## Dataset License
80
+
81
+ Creative Commons Attribution Share Alike 4.0 (cc-by-sa-4.0)
82
+
83
+ ## Citation
84
+
85
+ If you are using the **Sea Wiki** dataloader in your work, please cite the following:
86
+ ```
87
+
88
+ @ONLINE{wikidump,
89
+ author = "Wikimedia Foundation",
90
+ title = "Wikimedia Downloads",
91
+ url = "https://dumps.wikimedia.org"}
92
+ @ONLINE{wikipedia-hf,
93
+ title = "Huggingface Wikipedia Dataset",
94
+ url = "https://huggingface.co/datasets/wikipedia"}
95
+ @ONLINE{wikipedia-hf,
96
+ title = "Huggingface SEA Wikipedia Dataset",
97
+ url = "https://huggingface.co/datasets/sabilmakbar/sea_wiki"}
98
+
99
+
100
+ @article{lovenia2024seacrowd,
101
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
102
+ 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},
103
+ year={2024},
104
+ eprint={2406.10118},
105
+ journal={arXiv preprint arXiv: 2406.10118}
106
+ }
107
+
108
+ ```