Divyanshu commited on
Commit
5f0a4a2
1 Parent(s): 504cfd6

add readme

Browse files
Files changed (1) hide show
  1. README.md +193 -1
README.md CHANGED
@@ -28,4 +28,196 @@ task_categories:
28
  - text-classification
29
  task_ids:
30
  - natural-language-inference
31
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  - text-classification
29
  task_ids:
30
  - natural-language-inference
31
+ ---
32
+
33
+ # Dataset Card for "IndicParaphrase"
34
+
35
+ ## Table of Contents
36
+
37
+ - [Dataset Card for "IndicParaphrase"](#dataset-card-for-indicparaphrase)
38
+ - [Table of Contents](#table-of-contents)
39
+ - [Dataset Description](#dataset-description)
40
+ - [Dataset Summary](#dataset-summary)
41
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
42
+ - [Languages](#languages)
43
+ - [Dataset Structure](#dataset-structure)
44
+ - [Data Instances](#data-instances)
45
+ - [Data Fields](#data-fields)
46
+ - [Data Splits](#data-splits)
47
+ - [Dataset usage](#dataset-usage)
48
+ - [Dataset Creation](#dataset-creation)
49
+ - [Curation Rationale](#curation-rationale)
50
+ - [Source Data](#source-data)
51
+ - [Initial Data Collection and Normalization](#initial-data-collection-and-normalization)
52
+ - [Who are the source language producers?](#who-are-the-source-language-producers)
53
+ - [Human Verification Process](#human-verification-process)
54
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
55
+ - [Social Impact of Dataset](#social-impact-of-dataset)
56
+ - [Discussion of Biases](#discussion-of-biases)
57
+ - [Other Known Limitations](#other-known-limitations)
58
+ - [Additional Information](#additional-information)
59
+ - [Dataset Curators](#dataset-curators)
60
+ - [Licensing Information](#licensing-information)
61
+ - [Citation Information](#citation-information)
62
+ - [Contributions](#contributions)
63
+
64
+ ## Dataset Description
65
+
66
+ - **Homepage:** <https://github.com/divyanshuaggarwal/IndicXNLI>
67
+ - **Paper:** [IndicXNLI: Evaluating Multilingual Inference for Indian Languages](https://arxiv.org/abs/2204.08776)
68
+ - **Point of Contact:** [Divyanshu Aggarwal](mailto:divyanshuggrwl@gmail.com)
69
+
70
+ ### Dataset Summary
71
+ . INDICXNLI is similar to existing
72
+ XNLI dataset in shape/form, but focusses on Indic language family. INDICXNLI include NLI
73
+ data for eleven major Indic languages that includes
74
+ Assamese (‘as’), Gujarat (‘gu’), Kannada (‘kn’),
75
+ Malayalam (‘ml’), Marathi (‘mr’), Odia (‘or’),
76
+ Punjabi (‘pa’), Tamil (‘ta’), Telugu (‘te’), Hindi
77
+ (‘hi’), and Bengali (‘bn’).
78
+
79
+ ### Supported Tasks and Leaderboards
80
+
81
+ **Tasks:** Natural Language Inference
82
+
83
+ **Leaderboards:** Currently there is no Leaderboard for this dataset.
84
+
85
+ ### Languages
86
+
87
+ - `Assamese (as)`
88
+ - `Bengali (bn)`
89
+ - `Gujarati (gu)`
90
+ - `Kannada (kn)`
91
+ - `Hindi (hi)`
92
+ - `Malayalam (ml)`
93
+ - `Marathi (mr)`
94
+ - `Oriya (or)`
95
+ - `Punjabi (pa)`
96
+ - `Tamil (ta)`
97
+ - `Telugu (te)`
98
+
99
+ ## Dataset Structure
100
+
101
+ ### Data Instances
102
+
103
+ One example from the `hi` dataset is given below in JSON format.
104
+
105
+ ```python
106
+ {'premise': 'अवधारणात्मक रूप से क्रीम स्किमिंग के दो बुनियादी आयाम हैं-उत्पाद और भूगोल।',
107
+ 'hypothesis': 'उत्पाद और भूगोल क्रीम स्किमिंग का काम करते हैं।',
108
+ 'label': 1 (neutral) }
109
+ ```
110
+
111
+ ### Data Fields
112
+
113
+ - `premise (string)`: Premise Sentence
114
+ - `hypothesis (string)`: Hypothesis Sentence
115
+ - `label (integer)`: Integer label `0` if hypothesis `entails` the premise, `2` if hypothesis `negates` the premise and `1` otherwise.
116
+
117
+ ### Data Splits
118
+
119
+ Below is the dataset split given for `hi` dataset.
120
+
121
+ ```python
122
+ DatasetDict({
123
+ train: Dataset({
124
+ features: ['premise', 'hypothesis', 'label'],
125
+ num_rows: 392702
126
+ })
127
+ test: Dataset({
128
+ features: ['premise', 'hypothesis', 'label'],
129
+ num_rows: 5010
130
+ })
131
+ validation: Dataset({
132
+ features: ['premise', 'hypothesis', 'label'],
133
+ num_rows: 2490
134
+ })
135
+ })
136
+
137
+ ```
138
+
139
+ The dataset split remains same across all languages.
140
+
141
+ ## Dataset usage
142
+
143
+ Code snippet for using the dataset using datasets library.
144
+
145
+ ```python
146
+ from datasets import load_dataset
147
+
148
+ dataset = load_dataset("Divyanshu/indicxnli")
149
+ ```
150
+
151
+ ## Dataset Creation
152
+ Machine translation of XNLI english dataset to 11 listed Indic Languages.
153
+
154
+ ### Curation Rationale
155
+
156
+ [More information needed]
157
+
158
+ ### Source Data
159
+
160
+ [XNLI dataset](https://cims.nyu.edu/~sbowman/xnli/)
161
+
162
+ #### Initial Data Collection and Normalization
163
+
164
+ [Detailed in the paper](https://arxiv.org/abs/2204.08776)
165
+
166
+ #### Who are the source language producers?
167
+
168
+ [Detailed in the paper](https://arxiv.org/abs/2204.08776)
169
+
170
+ #### Human Verification Process
171
+
172
+ [Detailed in the paper](https://arxiv.org/abs/2204.08776)
173
+
174
+
175
+ ## Considerations for Using the Data
176
+
177
+ ### Social Impact of Dataset
178
+
179
+ [More information needed]
180
+
181
+ ### Discussion of Biases
182
+
183
+ [More information needed]
184
+
185
+ ### Other Known Limitations
186
+
187
+ [More information needed]
188
+
189
+ ## Additional Information
190
+
191
+ ### Dataset Curators
192
+
193
+ Divyanshu Aggarwal, Vivek Gupta, Anoop Kunchukuttan
194
+
195
+ ### Licensing Information
196
+
197
+ Contents of this repository are restricted to only non-commercial research purposes under the [Creative Commons Attribution-NonCommercial 4.0 International License (CC BY-NC 4.0)](https://creativecommons.org/licenses/by-nc/4.0/). Copyright of the dataset contents belongs to the original copyright holders.
198
+
199
+ ### Citation Information
200
+
201
+ If you use any of the datasets, models or code modules, please cite the following paper:
202
+
203
+ ```
204
+ @misc{https://doi.org/10.48550/arxiv.2204.08776,
205
+ doi = {10.48550/ARXIV.2204.08776},
206
+
207
+ url = {https://arxiv.org/abs/2204.08776},
208
+
209
+ author = {Aggarwal, Divyanshu and Gupta, Vivek and Kunchukuttan, Anoop},
210
+
211
+ keywords = {Computation and Language (cs.CL), Artificial Intelligence (cs.AI), FOS: Computer and information sciences, FOS: Computer and information sciences},
212
+
213
+ title = {IndicXNLI: Evaluating Multilingual Inference for Indian Languages},
214
+
215
+ publisher = {arXiv},
216
+
217
+ year = {2022},
218
+
219
+ copyright = {Creative Commons Attribution 4.0 International}
220
+ }
221
+ ```
222
+
223
+ ### Contributions