Datasets:

ArXiv:
License:
holylovenia commited on
Commit
4b47cb4
·
verified ·
1 Parent(s): 8d30e53

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +57 -17
README.md CHANGED
@@ -1,23 +1,65 @@
 
1
  ---
2
- tags:
3
- - summarization
4
- language:
5
  - ind
 
 
 
6
  - eng
 
 
 
 
 
7
  ---
8
 
9
- # xl_sum
 
 
 
 
10
 
11
- XL-Sum is a large-scale multilingual summarization dataset that covers 45 languages including Indonesian text summarization.
12
 
13
- The dataset is based on article-summary pairs from BBC, is highly abstractive, concise, and of high quality, as indicated by human and intrinsic evaluation.
14
 
 
 
15
  ## Dataset Usage
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
- Run `pip install nusacrowd` before loading the dataset through HuggingFace's `load_dataset`.
 
 
 
 
 
 
 
 
 
 
18
 
19
  ## Citation
20
 
 
21
  ```
22
  @inproceedings{hasan2021xl,
23
  title={XL-Sum: Large-Scale Multilingual Abstractive Summarization for 44 Languages},
@@ -26,16 +68,14 @@ Run `pip install nusacrowd` before loading the dataset through HuggingFace's `lo
26
  pages={4693--4703},
27
  year={2021}
28
  }
29
- ```
30
 
31
- ## License
32
 
33
- CC-BY-NC-SA 4.0
34
-
35
- ## Homepage
36
-
37
- [https://github.com/csebuetnlp/xl-sum](https://github.com/csebuetnlp/xl-sum)
38
-
39
- ### NusaCatalogue
40
 
41
- For easy indexing and metadata: [https://indonlp.github.io/nusa-catalogue](https://indonlp.github.io/nusa-catalogue)
 
1
+
2
  ---
3
+ license: cc-by-nc-sa-4.0
4
+ language:
 
5
  - ind
6
+ - mya
7
+ - tha
8
+ - vie
9
  - eng
10
+ pretty_name: Xl Sum
11
+ task_categories:
12
+ - summarization
13
+ tags:
14
+ - summarization
15
  ---
16
 
17
+ XL-Sum, a comprehensive and diverse dataset comprising 1 million professionally annotated article-summary pairs from BBC, was extracted using a set of carefully designed heuristics.
18
+ The dataset covers 44 languages ranging from low to high-resource, including 4 indigenous languages spoken in Southeast Asia region.
19
+
20
+
21
+ ## Languages
22
 
23
+ ind, mya, tha, vie, eng
24
 
25
+ ## Supported Tasks
26
 
27
+ Summarization
28
+
29
  ## Dataset Usage
30
+ ### Using `datasets` library
31
+ ```
32
+ from datasets import load_dataset
33
+ dset = datasets.load_dataset("SEACrowd/xl_sum", trust_remote_code=True)
34
+ ```
35
+ ### Using `seacrowd` library
36
+ ```import seacrowd as sc
37
+ # Load the dataset using the default config
38
+ dset = sc.load_dataset("xl_sum", schema="seacrowd")
39
+ # Check all available subsets (config names) of the dataset
40
+ print(sc.available_config_names("xl_sum"))
41
+ # Load the dataset using a specific config
42
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
43
+ ```
44
+
45
+ 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).
46
+
47
 
48
+ ## Dataset Homepage
49
+
50
+ [https://github.com/csebuetnlp/xl-sum](https://github.com/csebuetnlp/xl-sum)
51
+
52
+ ## Dataset Version
53
+
54
+ Source: 2.0.0. SEACrowd: 2024.06.20.
55
+
56
+ ## Dataset License
57
+
58
+ Creative Commons Attribution Non Commercial Share Alike 4.0 (cc-by-nc-sa-4.0)
59
 
60
  ## Citation
61
 
62
+ If you are using the **Xl Sum** dataloader in your work, please cite the following:
63
  ```
64
  @inproceedings{hasan2021xl,
65
  title={XL-Sum: Large-Scale Multilingual Abstractive Summarization for 44 Languages},
 
68
  pages={4693--4703},
69
  year={2021}
70
  }
 
71
 
 
72
 
73
+ @article{lovenia2024seacrowd,
74
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
75
+ 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},
76
+ year={2024},
77
+ eprint={2406.10118},
78
+ journal={arXiv preprint arXiv: 2406.10118}
79
+ }
80
 
81
+ ```