Datasets:

ArXiv:
License:
holylovenia commited on
Commit
ae325f9
·
verified ·
1 Parent(s): 0db088a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +100 -0
README.md ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: cc-by-sa-3.0
4
+ language:
5
+ - ceb
6
+ - fil
7
+ - ind
8
+ - jav
9
+ - zlm
10
+ - mya
11
+ - tha
12
+ - vie
13
+ - war
14
+ pretty_name: Wit
15
+ task_categories:
16
+ - image-captioning
17
+ tags:
18
+ - image-captioning
19
+ ---
20
+
21
+ Wikipedia-based Image Text (WIT) Dataset is a large multimodal multilingual dataset.
22
+ WIT is composed of a curated set of 37.6 million entity rich image-text examples with
23
+ 11.5 million unique images across 108 Wikipedia languages. There are more than 12k
24
+ examples in each of 108 languages, with 53 languages having 100k image-text pairs.
25
+ Nine languages are spoken in the Southeast Asian region.
26
+ Since the dataset contains multiple references, following Section 3.2 of the dataset's
27
+ paper, the `seacrowd_imtext` subsets specify which reference is used for each data
28
+ instance's texts via context in metadata.
29
+
30
+
31
+ ## Languages
32
+
33
+ ceb, fil, ind, jav, zlm, mya, tha, vie, war
34
+
35
+ ## Supported Tasks
36
+
37
+ Image Captioning
38
+
39
+ ## Dataset Usage
40
+ ### Using `datasets` library
41
+ ```
42
+ from datasets import load_dataset
43
+ dset = datasets.load_dataset("SEACrowd/wit", trust_remote_code=True)
44
+ ```
45
+ ### Using `seacrowd` library
46
+ ```import seacrowd as sc
47
+ # Load the dataset using the default config
48
+ dset = sc.load_dataset("wit", schema="seacrowd")
49
+ # Check all available subsets (config names) of the dataset
50
+ print(sc.available_config_names("wit"))
51
+ # Load the dataset using a specific config
52
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
53
+ ```
54
+
55
+ 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).
56
+
57
+
58
+ ## Dataset Homepage
59
+
60
+ [https://github.com/google-research-datasets/wit](https://github.com/google-research-datasets/wit)
61
+
62
+ ## Dataset Version
63
+
64
+ Source: 1.0.0. SEACrowd: 2024.06.20.
65
+
66
+ ## Dataset License
67
+
68
+ Creative Commons Attribution Share Alike 3.0 (cc-by-sa-3.0)
69
+
70
+ ## Citation
71
+
72
+ If you are using the **Wit** dataloader in your work, please cite the following:
73
+ ```
74
+ @inproceedings{10.1145/3404835.3463257,
75
+ author = {Srinivasan, Krishna and Raman, Karthik and Chen, Jiecao and Bendersky, Michael and Najork, Marc},
76
+ title = {WIT: Wikipedia-Based Image Text Dataset for Multimodal Multilingual Machine Learning},
77
+ year = {2021},
78
+ isbn = {9781450380379},
79
+ publisher = {Association for Computing Machinery},
80
+ address = {New York, NY, USA},
81
+ url = {https://doi.org/10.1145/3404835.3463257},
82
+ doi = {10.1145/3404835.3463257},
83
+ booktitle = {Proceedings of the 44th International ACM SIGIR Conference on Research and Development in Information Retrieval},
84
+ pages = {2443–2449},
85
+ numpages = {7},
86
+ keywords = {dataset, multimodal, machine learning, wikipedia, multilingual, image-text retrieval, neural networks},
87
+ location = {Virtual Event, Canada},
88
+ series = {SIGIR '21}
89
+ }
90
+
91
+
92
+ @article{lovenia2024seacrowd,
93
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
94
+ 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},
95
+ year={2024},
96
+ eprint={2406.10118},
97
+ journal={arXiv preprint arXiv: 2406.10118}
98
+ }
99
+
100
+ ```