holylovenia commited on
Commit
285715c
·
verified ·
1 Parent(s): 0256aa7

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +79 -0
README.md ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ language:
4
+ - ind
5
+ pretty_name: Wikilingua
6
+ task_categories:
7
+ - summarization
8
+ tags:
9
+ - summarization
10
+ ---
11
+
12
+ We introduce WikiLingua, a large-scale, multilingual dataset for the evaluation of crosslingual abstractive
13
+ summarization systems. We extract article and summary pairs in 18 languages from WikiHow12, a high quality,
14
+ collaborative resource of how-to guides on a diverse set of topics written by human authors. We create gold-standard
15
+ article summary alignments across languages by aligning the images that are used to describe each how-to step in an
16
+ article.
17
+
18
+
19
+ ## Languages
20
+
21
+ ind
22
+
23
+ ## Supported Tasks
24
+
25
+ Summarization
26
+
27
+ ## Dataset Usage
28
+ ### Using `datasets` library
29
+ ```
30
+ from datasets import load_dataset
31
+ dset = datasets.load_dataset("SEACrowd/wikilingua", 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("wikilingua", schema="seacrowd")
37
+ # Check all available subsets (config names) of the dataset
38
+ print(sc.available_config_names("wikilingua"))
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://github.com/esdurmus/Wikilingua](https://github.com/esdurmus/Wikilingua)
49
+
50
+ ## Dataset Version
51
+
52
+ Source: 1.0.0. SEACrowd: 2024.06.20.
53
+
54
+ ## Dataset License
55
+
56
+ CC-BY-NC-SA 3.0
57
+
58
+ ## Citation
59
+
60
+ If you are using the **Wikilingua** dataloader in your work, please cite the following:
61
+ ```
62
+ @inproceedings{
63
+ ladhak-wiki-2020,
64
+ title={WikiLingua: A New Benchmark Dataset for Multilingual Abstractive Summarization},
65
+ author={Faisal Ladhak, Esin Durmus, Claire Cardie and Kathleen McKeown},
66
+ booktitle={Findings of EMNLP, 2020},
67
+ year={2020}
68
+ }
69
+
70
+
71
+ @article{lovenia2024seacrowd,
72
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
73
+ 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},
74
+ year={2024},
75
+ eprint={2406.10118},
76
+ journal={arXiv preprint arXiv: 2406.10118}
77
+ }
78
+
79
+ ```