Datasets:

ArXiv:
License:
holylovenia commited on
Commit
3070b76
·
verified ·
1 Parent(s): 2bb79da

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +94 -0
README.md ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: cc-by-4.0
4
+ language:
5
+ - fil
6
+ - id
7
+ - th
8
+ - vi
9
+ pretty_name: Xm3600
10
+ task_categories:
11
+ - image-captioning
12
+ tags:
13
+ - image-captioning
14
+ ---
15
+
16
+ Crossmodal-3600 dataset (XM3600 in short), a geographically-diverse set of 3600 images annotated with
17
+ human-generated reference captions in 36 languages. The images were selected from across the world,
18
+ covering regions where the languages are spoken, and annotated with captions that achieve consistency in
19
+ terms of style across all languages, while avoiding annotation artifacts due to direct translation.
20
+ The languages covered in the dataset include Filipino, Indonesian, Thai, and Vietnamnese
21
+
22
+
23
+ ## Languages
24
+
25
+ fil, id, th, vi
26
+
27
+ ## Supported Tasks
28
+
29
+ Image Captioning
30
+
31
+ ## Dataset Usage
32
+ ### Using `datasets` library
33
+ ```
34
+ from datasets import load_dataset
35
+ dset = datasets.load_dataset("SEACrowd/xm3600", trust_remote_code=True)
36
+ ```
37
+ ### Using `seacrowd` library
38
+ ```import seacrowd as sc
39
+ # Load the dataset using the default config
40
+ dset = sc.load_dataset("xm3600", schema="seacrowd")
41
+ # Check all available subsets (config names) of the dataset
42
+ print(sc.available_config_names("xm3600"))
43
+ # Load the dataset using a specific config
44
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
45
+ ```
46
+
47
+ 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).
48
+
49
+
50
+ ## Dataset Homepage
51
+
52
+ [https://google.github.io/crossmodal-3600/](https://google.github.io/crossmodal-3600/)
53
+
54
+ ## Dataset Version
55
+
56
+ Source: 1.0.0. SEACrowd: 2024.06.20.
57
+
58
+ ## Dataset License
59
+
60
+ Creative Commons Attribution 4.0 (cc-by-4.0)
61
+
62
+ ## Citation
63
+
64
+ If you are using the **Xm3600** dataloader in your work, please cite the following:
65
+ ```
66
+ @inproceedings{thapliyal-etal-2022-crossmodal,
67
+ title = "Crossmodal-3600: A Massively Multilingual Multimodal Evaluation Dataset",
68
+ author = "Thapliyal, Ashish V. and
69
+ Pont Tuset, Jordi and
70
+ Chen, Xi and
71
+ Soricut, Radu",
72
+ editor = "Goldberg, Yoav and
73
+ Kozareva, Zornitsa and
74
+ Zhang, Yue",
75
+ booktitle = "Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing",
76
+ month = dec,
77
+ year = "2022",
78
+ address = "Abu Dhabi, United Arab Emirates",
79
+ publisher = "Association for Computational Linguistics",
80
+ url = "https://aclanthology.org/2022.emnlp-main.45",
81
+ doi = "10.18653/v1/2022.emnlp-main.45",
82
+ pages = "715--729",
83
+ }
84
+
85
+
86
+ @article{lovenia2024seacrowd,
87
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
88
+ 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},
89
+ year={2024},
90
+ eprint={2406.10118},
91
+ journal={arXiv preprint arXiv: 2406.10118}
92
+ }
93
+
94
+ ```