holylovenia commited on
Commit
5853ace
1 Parent(s): 36f42f0

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: cc-by-4.0
4
+ language:
5
+ - fil
6
+ - ind
7
+ - tha
8
+ - vie
9
+ pretty_name: Cc3M 35L
10
+ task_categories:
11
+ - image-captioning
12
+ tags:
13
+ - image-captioning
14
+ ---
15
+
16
+ CC3M-35L is created by translating Conceptual Captions 3M (Sharma et al., 2018),
17
+ originally in English, to the other 34 languages using Google's machine translation API.
18
+
19
+
20
+ This is a local dataset. You have to obtain this dataset separately from [{homepage}]({homepage}) to use this dataloader.
21
+
22
+ ## Languages
23
+
24
+ fil, ind, tha, vie
25
+
26
+ ## Supported Tasks
27
+
28
+ Image Captioning
29
+
30
+ ## Dataset Usage
31
+ ### Using `datasets` library
32
+ ```
33
+ from datasets import load_dataset
34
+ dset = datasets.load_dataset("SEACrowd/cc3m_35l", 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("cc3m_35l", schema="seacrowd")
40
+ # Check all available subsets (config names) of the dataset
41
+ print(sc.available_config_names("cc3m_35l"))
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://google.github.io/crossmodal-3600/](https://google.github.io/crossmodal-3600/)
52
+
53
+ ## Dataset Version
54
+
55
+ Source: 1.0.0. SEACrowd: 2024.06.20.
56
+
57
+ ## Dataset License
58
+
59
+ Creative Commons Attribution 4.0 (cc-by-4.0)
60
+
61
+ ## Citation
62
+
63
+ If you are using the **Cc3M 35L** dataloader in your work, please cite the following:
64
+ ```
65
+ @inproceedings{thapliyal-etal-2022-crossmodal,
66
+ title = "Crossmodal-3600: A Massively Multilingual Multimodal Evaluation Dataset",
67
+ author = "Thapliyal, Ashish V. and
68
+ Pont Tuset, Jordi and
69
+ Chen, Xi and
70
+ Soricut, Radu",
71
+ editor = "Goldberg, Yoav and
72
+ Kozareva, Zornitsa and
73
+ Zhang, Yue",
74
+ booktitle = "Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing",
75
+ month = dec,
76
+ year = "2022",
77
+ address = "Abu Dhabi, United Arab Emirates",
78
+ publisher = "Association for Computational Linguistics",
79
+ url = "https://aclanthology.org/2022.emnlp-main.45",
80
+ doi = "10.18653/v1/2022.emnlp-main.45",
81
+ pages = "715--729",
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
+ ```