holylovenia commited on
Commit
7c32775
1 Parent(s): 846f1cf

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +113 -0
README.md ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: unknown
4
+ language:
5
+ - ace
6
+ - ban
7
+ - bcl
8
+ - blt
9
+ - bug
10
+ - ceb
11
+ - cfm
12
+ - cnh
13
+ - ctd
14
+ - duu
15
+ - hil
16
+ - hlt
17
+ - hni
18
+ - hnj
19
+ - ilo
20
+ - ind
21
+ - jav
22
+ - khm
23
+ - kkh
24
+ - lao
25
+ - lus
26
+ - mad
27
+ - min
28
+ - mnw
29
+ - mya
30
+ - pam
31
+ - shn
32
+ - sun
33
+ - tdt
34
+ - tet
35
+ - tgl
36
+ - tha
37
+ - vie
38
+ - war
39
+ - zlm
40
+ pretty_name: Udhr
41
+ task_categories:
42
+ - self-supervised-pretraining
43
+ tags:
44
+ - self-supervised-pretraining
45
+ ---
46
+
47
+ The Universal Declaration of Human Rights (UDHR) is a milestone document in the history of
48
+ human rights. Drafted by representatives with different legal and cultural backgrounds from
49
+ all regions of the world, it set out, for the first time, fundamental human rights to be
50
+ universally protected. The Declaration was adopted by the UN General Assembly in Paris on
51
+ 10 December 1948 during its 183rd plenary meeting.
52
+
53
+
54
+ ## Languages
55
+
56
+ ace, ban, bcl, blt, bug, ceb, cfm, cnh, ctd, duu, hil, hlt, hni, hnj, ilo, ind, jav, khm, kkh, lao, lus, mad, min, mnw, mya, pam, shn, sun, tdt, tet, tgl, tha, vie, war, zlm
57
+
58
+ ## Supported Tasks
59
+
60
+ Self Supervised Pretraining
61
+
62
+ ## Dataset Usage
63
+ ### Using `datasets` library
64
+ ```
65
+ from datasets import load_dataset
66
+ dset = datasets.load_dataset("SEACrowd/udhr", trust_remote_code=True)
67
+ ```
68
+ ### Using `seacrowd` library
69
+ ```import seacrowd as sc
70
+ # Load the dataset using the default config
71
+ dset = sc.load_dataset("udhr", schema="seacrowd")
72
+ # Check all available subsets (config names) of the dataset
73
+ print(sc.available_config_names("udhr"))
74
+ # Load the dataset using a specific config
75
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
76
+ ```
77
+
78
+ 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).
79
+
80
+
81
+ ## Dataset Homepage
82
+
83
+ [https://unicode.org/udhr/index.html](https://unicode.org/udhr/index.html)
84
+
85
+ ## Dataset Version
86
+
87
+ Source: 1.0.0. SEACrowd: 2024.06.20.
88
+
89
+ ## Dataset License
90
+
91
+ Unknown (unknown)
92
+
93
+ ## Citation
94
+
95
+ If you are using the **Udhr** dataloader in your work, please cite the following:
96
+ ```
97
+ @misc{united1998universal,
98
+ title={The Universal Declaration of Human Rights, 1948-1998},
99
+ author={United Nations},
100
+ year={1998},
101
+ publisher={United Nations Dept. of Public Information New York}
102
+ }
103
+
104
+
105
+ @article{lovenia2024seacrowd,
106
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
107
+ 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},
108
+ year={2024},
109
+ eprint={2406.10118},
110
+ journal={arXiv preprint arXiv: 2406.10118}
111
+ }
112
+
113
+ ```