Datasets:

ArXiv:
License:
holylovenia commited on
Commit
049fad8
·
verified ·
1 Parent(s): fcca00c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +85 -0
README.md ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: cc-by-nc-4.0
4
+ language:
5
+ - tha
6
+ - vie
7
+ pretty_name: Xnli
8
+ task_categories:
9
+ - textual-entailment
10
+ tags:
11
+ - textual-entailment
12
+ ---
13
+
14
+ XNLI is a subset of a few thousand examples from MNLI which has been translated into a 14 different languages (some low-ish resource). As with MNLI, the goal is to predict textual entailment (does sentence A imply/contradict/neither sentence B) and is a classification task (given two sentences, predict one of three labels).
15
+
16
+
17
+ ## Languages
18
+
19
+ tha, vie
20
+
21
+ ## Supported Tasks
22
+
23
+ Textual Entailment
24
+
25
+ ## Dataset Usage
26
+ ### Using `datasets` library
27
+ ```
28
+ from datasets import load_dataset
29
+ dset = datasets.load_dataset("SEACrowd/xnli", trust_remote_code=True)
30
+ ```
31
+ ### Using `seacrowd` library
32
+ ```import seacrowd as sc
33
+ # Load the dataset using the default config
34
+ dset = sc.load_dataset("xnli", schema="seacrowd")
35
+ # Check all available subsets (config names) of the dataset
36
+ print(sc.available_config_names("xnli"))
37
+ # Load the dataset using a specific config
38
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
39
+ ```
40
+
41
+ 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).
42
+
43
+
44
+ ## Dataset Homepage
45
+
46
+ [https://github.com/facebookresearch/XNLI](https://github.com/facebookresearch/XNLI)
47
+
48
+ ## Dataset Version
49
+
50
+ Source: 1.1.0. SEACrowd: 2024.06.20.
51
+
52
+ ## Dataset License
53
+
54
+ Creative Commons Attribution Non Commercial 4.0 (cc-by-nc-4.0)
55
+
56
+ ## Citation
57
+
58
+ If you are using the **Xnli** dataloader in your work, please cite the following:
59
+ ```
60
+ @InProceedings{conneau2018xnli,
61
+ author = "Conneau, Alexis
62
+ and Rinott, Ruty
63
+ and Lample, Guillaume
64
+ and Williams, Adina
65
+ and Bowman, Samuel R.
66
+ and Schwenk, Holger
67
+ and Stoyanov, Veselin",
68
+ title = "XNLI: Evaluating Cross-lingual Sentence Representations",
69
+ booktitle = "Proceedings of the 2018 Conference on Empirical Methods
70
+ in Natural Language Processing",
71
+ year = "2018",
72
+ publisher = "Association for Computational Linguistics",
73
+ location = "Brussels, Belgium",
74
+ }
75
+
76
+
77
+ @article{lovenia2024seacrowd,
78
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
79
+ 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},
80
+ year={2024},
81
+ eprint={2406.10118},
82
+ journal={arXiv preprint arXiv: 2406.10118}
83
+ }
84
+
85
+ ```