holylovenia commited on
Commit
7db6689
1 Parent(s): ea86d9e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +101 -0
README.md ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: lgpl
4
+ language:
5
+ - bik
6
+ - ceb
7
+ - hil
8
+ - ilo
9
+ - tgl
10
+ - pam
11
+ - pag
12
+ - war
13
+ pretty_name: Palito
14
+ task_categories:
15
+ - self-supervised-pretraining
16
+ tags:
17
+ - self-supervised-pretraining
18
+ ---
19
+
20
+ This paper aims at describing the building of the online corpora on Philippine
21
+ languages as part of the online repository system called Palito. There are five components
22
+ of the corpora: the top four major Philippine languages which are Tagalog, Cebuano,
23
+ Ilocano and Hiligaynon and the Filipino Sign Language (FSL). The four languages are
24
+ composed of 250,000-word written texts each, whereas the FSL is composed of seven
25
+ thousand signs in video format. Categories of the written texts include creative writing (such
26
+ as novels and stories) and religious texts (such as the Bible). Automated tools are provided
27
+ for language analysis such as word count, collocates, and others. This is part of a bigger
28
+ corpora building project for Philippine languages that would consider text, speech and
29
+ video forms, and the corresponding development of automated tools for language analysis
30
+ of these various forms.
31
+
32
+
33
+ ## Languages
34
+
35
+ bik, ceb, hil, ilo, tgl, pam, pag, war
36
+
37
+ ## Supported Tasks
38
+
39
+ Self Supervised Pretraining
40
+
41
+ ## Dataset Usage
42
+ ### Using `datasets` library
43
+ ```
44
+ from datasets import load_dataset
45
+ dset = datasets.load_dataset("SEACrowd/palito", trust_remote_code=True)
46
+ ```
47
+ ### Using `seacrowd` library
48
+ ```import seacrowd as sc
49
+ # Load the dataset using the default config
50
+ dset = sc.load_dataset("palito", schema="seacrowd")
51
+ # Check all available subsets (config names) of the dataset
52
+ print(sc.available_config_names("palito"))
53
+ # Load the dataset using a specific config
54
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
55
+ ```
56
+
57
+ 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).
58
+
59
+
60
+ ## Dataset Homepage
61
+
62
+ [https://github.com/imperialite/Philippine-Languages-Online-Corpora/tree/master/PALITO%20Corpus](https://github.com/imperialite/Philippine-Languages-Online-Corpora/tree/master/PALITO%20Corpus)
63
+
64
+ ## Dataset Version
65
+
66
+ Source: 1.0.0. SEACrowd: 2024.06.20.
67
+
68
+ ## Dataset License
69
+
70
+ GNU Lesser General Public License family (lgpl)
71
+
72
+ ## Citation
73
+
74
+ If you are using the **Palito** dataloader in your work, please cite the following:
75
+ ```
76
+
77
+ @inproceedings{dita-etal-2009-building,
78
+ title = "Building Online Corpora of {P}hilippine Languages",
79
+ author = "Dita, Shirley N. and
80
+ Roxas, Rachel Edita O. and
81
+ Inventado, Paul",
82
+ editor = "Kwong, Olivia",
83
+ booktitle = "Proceedings of the 23rd Pacific Asia Conference on Language, Information and Computation, Volume 2",
84
+ month = dec,
85
+ year = "2009",
86
+ address = "Hong Kong",
87
+ publisher = "City University of Hong Kong",
88
+ url = "https://aclanthology.org/Y09-2024",
89
+ pages = "646--653",
90
+ }
91
+
92
+
93
+ @article{lovenia2024seacrowd,
94
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
95
+ 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},
96
+ year={2024},
97
+ eprint={2406.10118},
98
+ journal={arXiv preprint arXiv: 2406.10118}
99
+ }
100
+
101
+ ```