holylovenia commited on
Commit
47f8f79
1 Parent(s): cf5db6f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +53 -18
README.md CHANGED
@@ -1,25 +1,62 @@
 
1
  ---
2
- tags:
3
- - speech-to-speech-translation
4
- language:
5
  - ind
6
  - eng
 
 
 
 
 
7
  ---
8
 
9
- # cvss
10
-
11
  CVSS is a massively multilingual-to-English speech-to-speech translation corpus,
12
-
13
  covering sentence-level parallel speech-to-speech translation pairs from 21
14
-
15
  languages into English.
16
 
 
 
 
 
 
 
 
 
 
17
  ## Dataset Usage
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
 
19
- Run `pip install nusacrowd` before loading the dataset through HuggingFace's `load_dataset`.
 
 
 
 
 
 
 
 
 
 
20
 
21
  ## Citation
22
 
 
23
  ```
24
  @inproceedings{jia2022cvss,
25
  title={{CVSS} Corpus and Massively Multilingual Speech-to-Speech Translation},
@@ -28,16 +65,14 @@ Run `pip install nusacrowd` before loading the dataset through HuggingFace's `lo
28
  pages={6691--6703},
29
  year={2022}
30
  }
31
- ```
32
-
33
- ## License
34
-
35
- CC-BY 4.0
36
 
37
- ## Homepage
38
 
39
- [https://github.com/google-research-datasets/cvss](https://github.com/google-research-datasets/cvss)
40
-
41
- ### NusaCatalogue
 
 
 
 
42
 
43
- For easy indexing and metadata: [https://indonlp.github.io/nusa-catalogue](https://indonlp.github.io/nusa-catalogue)
 
1
+
2
  ---
3
+ language:
 
 
4
  - ind
5
  - eng
6
+ pretty_name: Cvss
7
+ task_categories:
8
+ - speech-to-speech-translation
9
+ tags:
10
+ - speech-to-speech-translation
11
  ---
12
 
 
 
13
  CVSS is a massively multilingual-to-English speech-to-speech translation corpus,
 
14
  covering sentence-level parallel speech-to-speech translation pairs from 21
 
15
  languages into English.
16
 
17
+
18
+ ## Languages
19
+
20
+ ind, eng
21
+
22
+ ## Supported Tasks
23
+
24
+ Speech To Speech Translation
25
+
26
  ## Dataset Usage
27
+ ### Using `datasets` library
28
+ ```
29
+ from datasets import load_dataset
30
+ dset = datasets.load_dataset("SEACrowd/cvss", trust_remote_code=True)
31
+ ```
32
+ ### Using `seacrowd` library
33
+ ```import seacrowd as sc
34
+ # Load the dataset using the default config
35
+ dset = sc.load_dataset("cvss", schema="seacrowd")
36
+ # Check all available subsets (config names) of the dataset
37
+ print(sc.available_config_names("cvss"))
38
+ # Load the dataset using a specific config
39
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
40
+ ```
41
+
42
+ 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).
43
+
44
 
45
+ ## Dataset Homepage
46
+
47
+ [https://github.com/google-research-datasets/cvss](https://github.com/google-research-datasets/cvss)
48
+
49
+ ## Dataset Version
50
+
51
+ Source: 1.0.0. SEACrowd: 2024.06.20.
52
+
53
+ ## Dataset License
54
+
55
+ CC-BY 4.0
56
 
57
  ## Citation
58
 
59
+ If you are using the **Cvss** dataloader in your work, please cite the following:
60
  ```
61
  @inproceedings{jia2022cvss,
62
  title={{CVSS} Corpus and Massively Multilingual Speech-to-Speech Translation},
 
65
  pages={6691--6703},
66
  year={2022}
67
  }
 
 
 
 
 
68
 
 
69
 
70
+ @article{lovenia2024seacrowd,
71
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
72
+ 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},
73
+ year={2024},
74
+ eprint={2406.10118},
75
+ journal={arXiv preprint arXiv: 2406.10118}
76
+ }
77
 
78
+ ```