holylovenia commited on
Commit
3c7d06c
1 Parent(s): 636b61c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +84 -0
README.md ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: cc-by-4.0
4
+ language:
5
+ - ind
6
+ - tgl
7
+ - vie
8
+ pretty_name: Mdia
9
+ task_categories:
10
+ - dialogue-system
11
+ - machine-translation
12
+ tags:
13
+ - dialogue-system
14
+ - machine-translation
15
+ ---
16
+
17
+ This is a multilingual benchmark for dialogue generation containing real-life
18
+ Reddit conversations (parent and response comment pairs) in 46 languages,
19
+ including Indonesian, Tagalog and Vietnamese. English translations are also
20
+ provided for comments.
21
+
22
+
23
+ ## Languages
24
+
25
+ ind, tgl, vie
26
+
27
+ ## Supported Tasks
28
+
29
+ Dialogue System, Machine Translation
30
+
31
+ ## Dataset Usage
32
+ ### Using `datasets` library
33
+ ```
34
+ from datasets import load_dataset
35
+ dset = datasets.load_dataset("SEACrowd/mdia", 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("mdia", schema="seacrowd")
41
+ # Check all available subsets (config names) of the dataset
42
+ print(sc.available_config_names("mdia"))
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://github.com/DoctorDream/mDIA](https://github.com/DoctorDream/mDIA)
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 **Mdia** dataloader in your work, please cite the following:
65
+ ```
66
+ @misc{zhang2022mdia,
67
+ title={MDIA: A Benchmark for Multilingual Dialogue Generation in 46 Languages},
68
+ author={Qingyu Zhang and Xiaoyu Shen and Ernie Chang and Jidong Ge and Pengke Chen},
69
+ year={2022},
70
+ eprint={2208.13078},
71
+ archivePrefix={arXiv},
72
+ primaryClass={cs.CL}
73
+ }
74
+
75
+
76
+ @article{lovenia2024seacrowd,
77
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
78
+ 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},
79
+ year={2024},
80
+ eprint={2406.10118},
81
+ journal={arXiv preprint arXiv: 2406.10118}
82
+ }
83
+
84
+ ```