holylovenia commited on
Commit
d3f68ca
1 Parent(s): 700d2e8

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +92 -0
README.md ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: other
4
+ language:
5
+ - khg
6
+ - khm
7
+ - mya
8
+ - tet
9
+ - tha
10
+ - vie
11
+ pretty_name: Glotstorybook
12
+ task_categories:
13
+ - self-supervised-pretraining
14
+ tags:
15
+ - self-supervised-pretraining
16
+ ---
17
+
18
+ The GlotStoryBook dataset is a compilation of children's storybooks from the Global
19
+ Storybooks project, encompassing 174 languages organized for machine translation tasks. It
20
+ features rows containing the text segment (text number), the language code, and the file
21
+ name, which corresponds to the specific book and story segment. This structure allows for
22
+ the comparison of texts across different languages by matching file names and text numbers
23
+ between rows.
24
+
25
+
26
+ ## Languages
27
+
28
+ khg, khm, mya, tet, tha, vie
29
+
30
+ ## Supported Tasks
31
+
32
+ Self Supervised Pretraining
33
+
34
+ ## Dataset Usage
35
+ ### Using `datasets` library
36
+ ```
37
+ from datasets import load_dataset
38
+ dset = datasets.load_dataset("SEACrowd/glotstorybook", trust_remote_code=True)
39
+ ```
40
+ ### Using `seacrowd` library
41
+ ```import seacrowd as sc
42
+ # Load the dataset using the default config
43
+ dset = sc.load_dataset("glotstorybook", schema="seacrowd")
44
+ # Check all available subsets (config names) of the dataset
45
+ print(sc.available_config_names("glotstorybook"))
46
+ # Load the dataset using a specific config
47
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
48
+ ```
49
+
50
+ 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).
51
+
52
+
53
+ ## Dataset Homepage
54
+
55
+ [https://huggingface.co/datasets/cis-lmu/GlotStoryBook](https://huggingface.co/datasets/cis-lmu/GlotStoryBook)
56
+
57
+ ## Dataset Version
58
+
59
+ Source: 1.0.0. SEACrowd: 2024.06.20.
60
+
61
+ ## Dataset License
62
+
63
+ Other License (others) | We do not own any of the text from which these data has been extracted. All the files are
64
+ collected from the repository located at https://github.com/global-asp/. The source
65
+ repository for each text and file is stored in the dataset. Each file in the dataset is
66
+ associated with one license from the CC family. The licenses include 'CC BY', 'CC BY-NC',
67
+ 'CC BY-NC-SA', 'CC-BY', 'CC-BY-NC', and 'Public Domain'. We also license the code, actual
68
+ packaging and the metadata of these data under the cc0-1.0.
69
+
70
+
71
+ ## Citation
72
+
73
+ If you are using the **Glotstorybook** dataloader in your work, please cite the following:
74
+ ```
75
+ @inproceedings{kargaran2023glotlid,
76
+ title = {{GlotLID: Language Identification for Low-Resource Languages}},
77
+ author = {Kargaran, Amir Hossein and Imani, Ayyoob and Yvon, Fran{\c{c}}ois and Sch{"u}tze, Hinrich},
78
+ year = 2023,
79
+ booktitle = {The 2023 Conference on Empirical Methods in Natural Language Processing},
80
+ url = {https://openreview.net/forum?id=dl4e3EBz5j}
81
+ }
82
+
83
+
84
+ @article{lovenia2024seacrowd,
85
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
86
+ 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},
87
+ year={2024},
88
+ eprint={2406.10118},
89
+ journal={arXiv preprint arXiv: 2406.10118}
90
+ }
91
+
92
+ ```