holylovenia commited on
Commit
e21af22
1 Parent(s): 0c963ae

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +53 -17
README.md CHANGED
@@ -1,21 +1,59 @@
 
1
  ---
2
- license: unknown
3
- tags:
4
- - paraphrasing
5
- language:
6
  - ind
 
 
 
 
 
7
  ---
8
 
9
- # paracotta_id
10
-
11
  ParaCotta is a synthetic parallel paraphrase corpus across 17 languages: Arabic, Catalan, Czech, German, English, Spanish, Estonian, French, Hindi, Indonesian, Italian, Dutch, Ro- manian, Russian, Swedish, Vietnamese, and Chinese.
12
 
 
 
 
 
 
 
 
 
 
13
  ## Dataset Usage
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
 
15
- Run `pip install nusacrowd` before loading the dataset through HuggingFace's `load_dataset`.
 
 
 
 
 
 
 
 
16
 
17
  ## Citation
18
 
 
19
  ```
20
  @article{aji2022paracotta,
21
  title={ParaCotta: Synthetic Multilingual Paraphrase Corpora from the Most Diverse Translation Sample Pair},
@@ -23,16 +61,14 @@ Run `pip install nusacrowd` before loading the dataset through HuggingFace's `lo
23
  journal={arXiv preprint arXiv:2205.04651},
24
  year={2022}
25
  }
26
- ```
27
 
28
- ## License
29
 
30
- Unknown
31
-
32
- ## Homepage
33
-
34
- [https://github.com/afaji/paracotta-paraphrase](https://github.com/afaji/paracotta-paraphrase)
35
-
36
- ### NusaCatalogue
37
 
38
- For easy indexing and metadata: [https://indonlp.github.io/nusa-catalogue](https://indonlp.github.io/nusa-catalogue)
 
1
+
2
  ---
3
+ language:
 
 
 
4
  - ind
5
+ pretty_name: Paracotta Id
6
+ task_categories:
7
+ - paraphrasing
8
+ tags:
9
+ - paraphrasing
10
  ---
11
 
 
 
12
  ParaCotta is a synthetic parallel paraphrase corpus across 17 languages: Arabic, Catalan, Czech, German, English, Spanish, Estonian, French, Hindi, Indonesian, Italian, Dutch, Ro- manian, Russian, Swedish, Vietnamese, and Chinese.
13
 
14
+
15
+ ## Languages
16
+
17
+ ind
18
+
19
+ ## Supported Tasks
20
+
21
+ Paraphrasing
22
+
23
  ## Dataset Usage
24
+ ### Using `datasets` library
25
+ ```
26
+ from datasets import load_dataset
27
+ dset = datasets.load_dataset("SEACrowd/paracotta_id", trust_remote_code=True)
28
+ ```
29
+ ### Using `seacrowd` library
30
+ ```import seacrowd as sc
31
+ # Load the dataset using the default config
32
+ dset = sc.load_dataset("paracotta_id", schema="seacrowd")
33
+ # Check all available subsets (config names) of the dataset
34
+ print(sc.available_config_names("paracotta_id"))
35
+ # Load the dataset using a specific config
36
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
37
+ ```
38
+
39
+ 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).
40
+
41
+
42
+ ## Dataset Homepage
43
 
44
+ [https://github.com/afaji/paracotta-paraphrase](https://github.com/afaji/paracotta-paraphrase)
45
+
46
+ ## Dataset Version
47
+
48
+ Source: 1.0.0. SEACrowd: 2024.06.20.
49
+
50
+ ## Dataset License
51
+
52
+ Unknown
53
 
54
  ## Citation
55
 
56
+ If you are using the **Paracotta Id** dataloader in your work, please cite the following:
57
  ```
58
  @article{aji2022paracotta,
59
  title={ParaCotta: Synthetic Multilingual Paraphrase Corpora from the Most Diverse Translation Sample Pair},
 
61
  journal={arXiv preprint arXiv:2205.04651},
62
  year={2022}
63
  }
 
64
 
 
65
 
66
+ @article{lovenia2024seacrowd,
67
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
68
+ 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},
69
+ year={2024},
70
+ eprint={2406.10118},
71
+ journal={arXiv preprint arXiv: 2406.10118}
72
+ }
73
 
74
+ ```