holylovenia commited on
Commit
826231c
·
verified ·
1 Parent(s): 0f595c7

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +93 -0
README.md ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: mit
4
+ language:
5
+ - ind
6
+ pretty_name: M3Ls
7
+ task_categories:
8
+ - summarization
9
+ - image-captioning
10
+ tags:
11
+ - summarization
12
+ - image-captioning
13
+ ---
14
+
15
+
16
+ The multilingual multimodal summarization dataset (M3LS) consists of over a million instances of document-image pairs
17
+ along with a professionally annotated multimodal summary for each pair.
18
+ It is derived from news articles published by the British Broadcasting Corporation (BBC) over a decade and spans 20 total languages,
19
+ which Indonesian is the only SEA language available on this dataset.
20
+
21
+
22
+ ## Languages
23
+
24
+ ind
25
+
26
+ ## Supported Tasks
27
+
28
+ Summarization, Image Captioning
29
+
30
+ ## Dataset Usage
31
+ ### Using `datasets` library
32
+ ```
33
+ from datasets import load_dataset
34
+ dset = datasets.load_dataset("SEACrowd/m3ls", trust_remote_code=True)
35
+ ```
36
+ ### Using `seacrowd` library
37
+ ```import seacrowd as sc
38
+ # Load the dataset using the default config
39
+ dset = sc.load_dataset("m3ls", schema="seacrowd")
40
+ # Check all available subsets (config names) of the dataset
41
+ print(sc.available_config_names("m3ls"))
42
+ # Load the dataset using a specific config
43
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
44
+ ```
45
+
46
+ 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).
47
+
48
+
49
+ ## Dataset Homepage
50
+
51
+ [https://github.com/anubhav-jangra/M3LS/tree/main](https://github.com/anubhav-jangra/M3LS/tree/main)
52
+
53
+ ## Dataset Version
54
+
55
+ Source: 1.0.0. SEACrowd: 2024.06.20.
56
+
57
+ ## Dataset License
58
+
59
+ MIT (mit)
60
+
61
+ ## Citation
62
+
63
+ If you are using the **M3Ls** dataloader in your work, please cite the following:
64
+ ```
65
+
66
+ @inproceedings{verma-etal-2023-large,
67
+ title = "Large Scale Multi-Lingual Multi-Modal Summarization Dataset",
68
+ author = "Verma, Yash and
69
+ Jangra, Anubhav and
70
+ Verma, Raghvendra and
71
+ Saha, Sriparna",
72
+ editor = "Vlachos, Andreas and
73
+ Augenstein, Isabelle",
74
+ booktitle = "Proceedings of the 17th Conference of the European Chapter of the Association for Computational Linguistics",
75
+ month = may,
76
+ year = "2023",
77
+ address = "Dubrovnik, Croatia",
78
+ publisher = "Association for Computational Linguistics",
79
+ url = "https://aclanthology.org/2023.eacl-main.263",
80
+ doi = "10.18653/v1/2023.eacl-main.263",
81
+ pages = "3620--3632",
82
+ }
83
+
84
+
85
+ @article{lovenia2024seacrowd,
86
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
87
+ 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},
88
+ year={2024},
89
+ eprint={2406.10118},
90
+ journal={arXiv preprint arXiv: 2406.10118}
91
+ }
92
+
93
+ ```