Datasets:

Sub-tasks:
parsing
Multilinguality:
multilingual
Size Categories:
1M<n<10M
Language Creators:
machine-generated
Annotations Creators:
machine-generated
Source Datasets:
original
ArXiv:
Tags:
License:
Divyanshu commited on
Commit
7f17ee7
1 Parent(s): 6714929
.history/README_20230707235600.md ADDED
@@ -0,0 +1,194 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - machine-generated
4
+ language_creators:
5
+ - machine-generated
6
+ language:
7
+ - as
8
+ - bn
9
+ - gu
10
+ - hi
11
+ - kn
12
+ - ml
13
+ - mr
14
+ - or
15
+ - pa
16
+ - ta
17
+ - te
18
+ license:
19
+ - cc0-1.0
20
+ multilinguality:
21
+ - multilingual
22
+ pretty_name: IE-SemParse
23
+ size_categories:
24
+ - 1M<n<10M
25
+ source_datasets:
26
+ - original
27
+ task_categories:
28
+ - text2text-generation
29
+ task_ids:
30
+ - parsing
31
+ ---
32
+
33
+ # Dataset Card for "IE-SemParse"
34
+
35
+ ## Table of Contents
36
+
37
+ - [Dataset Card for "IE-SemParse"](#dataset-card-for-ie-semparse)
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
+ - [Data Splits](#data-splits)
44
+ - [Dataset usage](#dataset-usage)
45
+ - [Dataset Creation](#dataset-creation)
46
+ - [Curation Rationale](#curation-rationale)
47
+ - [Source Data](#source-data)
48
+ - [Initial Data Collection and Normalization](#initial-data-collection-and-normalization)
49
+ - [Who are the source language producers?](#who-are-the-source-language-producers)
50
+ - [Human Verification Process](#human-verification-process)
51
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
52
+ - [Social Impact of Dataset](#social-impact-of-dataset)
53
+ - [Discussion of Biases](#discussion-of-biases)
54
+ - [Other Known Limitations](#other-known-limitations)
55
+ - [Dataset Curators](#dataset-curators)
56
+ - [Licensing Information](#licensing-information)
57
+ - [Citation Information](#citation-information)
58
+
59
+ ## Dataset Description
60
+
61
+ - **Homepage:** <https://github.com/divyanshuaggarwal/IE-SemParse>
62
+ - **Paper:** [Evaluating Inter-Bilingual Semantic Parsing for Indian Languages](https://arxiv.org/abs/2304.13005)
63
+ - **Point of Contact:** [Divyanshu Aggarwal](mailto:divyanshuggrwl@gmail.com)
64
+
65
+ ### Dataset Summary
66
+
67
+ IE-SemParse is an InterBilingual Semantic Parsing Dataset for eleven major Indic languages that includes
68
+ Assamese (‘as’), Gujarat (‘gu’), Kannada (‘kn’),
69
+ Malayalam (‘ml’), Marathi (‘mr’), Odia (‘or’),
70
+ Punjabi (‘pa’), Tamil (‘ta’), Telugu (‘te’), Hindi
71
+ (‘hi’), and Bengali (‘bn’).
72
+
73
+ ### Supported Tasks and Leaderboards
74
+
75
+ **Tasks:** Inter-Bilingual S
76
+
77
+ **Leaderboards:** Currently there is no Leaderboard for this dataset.
78
+
79
+ ### Languages
80
+
81
+ - `Assamese (as)`
82
+ - `Bengali (bn)`
83
+ - `Gujarati (gu)`
84
+ - `Kannada (kn)`
85
+ - `Hindi (hi)`
86
+ - `Malayalam (ml)`
87
+ - `Marathi (mr)`
88
+ - `Oriya (or)`
89
+ - `Punjabi (pa)`
90
+ - `Tamil (ta)`
91
+ - `Telugu (te)`
92
+
93
+ ...
94
+
95
+
96
+ ### Data Splits
97
+
98
+ <!-- Below is the dataset split given for `hi` dataset.
99
+
100
+ ```python
101
+ DatasetDict({
102
+ train: Dataset({
103
+ features: ['utterance', 'logical form', 'intent'],
104
+ num_rows: 36000
105
+ })
106
+ test: Dataset({
107
+ features: ['utterance', 'logical form', 'intent'],
108
+ num_rows: 3000
109
+ })
110
+ validation: Dataset({
111
+ features: ['utterance', 'logical form', 'intent'],
112
+ num_rows: 1500
113
+ })
114
+ })
115
+
116
+ ``` -->
117
+
118
+
119
+ ## Dataset usage
120
+
121
+ Code snippet for using the dataset using datasets library.
122
+
123
+ ```python
124
+ from datasets import load_dataset
125
+
126
+ dataset = load_dataset("Divyanshu/IE_SemParse")
127
+ ```
128
+
129
+ ## Dataset Creation
130
+
131
+ Machine translation of 3 multilingual semantic Parsing datasets english dataset to 11 listed Indic Languages.
132
+
133
+ ### Curation Rationale
134
+
135
+ [More information needed]
136
+
137
+ ### Source Data
138
+
139
+ [mTOP dataset](https://aclanthology.org/2021.eacl-main.257/)
140
+
141
+ [multilingualTOP dataset](https://github.com/awslabs/multilingual-top)
142
+
143
+ [multi-ATIS++ dataset](https://paperswithcode.com/paper/end-to-end-slot-alignment-and-recognition-for)
144
+
145
+ #### Initial Data Collection and Normalization
146
+
147
+ [Detailed in the paper](https://arxiv.org/abs/2304.13005)
148
+
149
+ #### Who are the source language producers?
150
+
151
+ [Detailed in the paper](https://arxiv.org/abs/2304.13005)
152
+
153
+ #### Human Verification Process
154
+
155
+ [Detailed in the paper](https://arxiv.org/abs/2304.13005)
156
+
157
+ ## Considerations for Using the Data
158
+
159
+ ### Social Impact of Dataset
160
+
161
+ [Detailed in the paper](https://arxiv.org/abs/2304.13005)
162
+
163
+ ### Discussion of Biases
164
+
165
+ [Detailed in the paper](https://arxiv.org/abs/2304.13005)
166
+
167
+ ### Other Known Limitations
168
+
169
+ [Detailed in the paper](https://arxiv.org/abs/2304.13005)
170
+
171
+ ### Dataset Curators
172
+
173
+ Divyanshu Aggarwal, Vivek Gupta, Anoop Kunchukuttan
174
+
175
+ ### Licensing Information
176
+
177
+ 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.
178
+
179
+ ### Citation Information
180
+
181
+ If you use any of the datasets, models or code modules, please cite the following paper:
182
+
183
+ ```
184
+ @misc{aggarwal2023evaluating,
185
+ title={Evaluating Inter-Bilingual Semantic Parsing for Indian Languages},
186
+ author={Divyanshu Aggarwal and Vivek Gupta and Anoop Kunchukuttan},
187
+ year={2023},
188
+ eprint={2304.13005},
189
+ archivePrefix={arXiv},
190
+ primaryClass={cs.CL}
191
+ }
192
+ ```
193
+
194
+ <!-- ### Contributions -->
.history/README_20230707235604.md ADDED
@@ -0,0 +1,194 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - machine-generated
4
+ language_creators:
5
+ - machine-generated
6
+ language:
7
+ - as
8
+ - bn
9
+ - gu
10
+ - hi
11
+ - kn
12
+ - ml
13
+ - mr
14
+ - or
15
+ - pa
16
+ - ta
17
+ - te
18
+ license:
19
+ - cc0-1.0
20
+ multilinguality:
21
+ - multilingual
22
+ pretty_name: IE-SemParse
23
+ size_categories:
24
+ - 1M<n<10M
25
+ source_datasets:
26
+ - original
27
+ task_categories:
28
+ - text2text-generation
29
+ task_ids:
30
+ - parsing
31
+ ---
32
+
33
+ # Dataset Card for "IE-SemParse"
34
+
35
+ ## Table of Contents
36
+
37
+ - [Dataset Card for "IE-SemParse"](#dataset-card-for-ie-semparse)
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
+ - [Data Splits](#data-splits)
44
+ - [Dataset usage](#dataset-usage)
45
+ - [Dataset Creation](#dataset-creation)
46
+ - [Curation Rationale](#curation-rationale)
47
+ - [Source Data](#source-data)
48
+ - [Initial Data Collection and Normalization](#initial-data-collection-and-normalization)
49
+ - [Who are the source language producers?](#who-are-the-source-language-producers)
50
+ - [Human Verification Process](#human-verification-process)
51
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
52
+ - [Social Impact of Dataset](#social-impact-of-dataset)
53
+ - [Discussion of Biases](#discussion-of-biases)
54
+ - [Other Known Limitations](#other-known-limitations)
55
+ - [Dataset Curators](#dataset-curators)
56
+ - [Licensing Information](#licensing-information)
57
+ - [Citation Information](#citation-information)
58
+
59
+ ## Dataset Description
60
+
61
+ - **Homepage:** <https://github.com/divyanshuaggarwal/IE-SemParse>
62
+ - **Paper:** [Evaluating Inter-Bilingual Semantic Parsing for Indian Languages](https://arxiv.org/abs/2304.13005)
63
+ - **Point of Contact:** [Divyanshu Aggarwal](mailto:divyanshuggrwl@gmail.com)
64
+
65
+ ### Dataset Summary
66
+
67
+ IE-SemParse is an InterBilingual Semantic Parsing Dataset for eleven major Indic languages that includes
68
+ Assamese (‘as’), Gujarat (‘gu’), Kannada (‘kn’),
69
+ Malayalam (‘ml’), Marathi (‘mr’), Odia (‘or’),
70
+ Punjabi (‘pa’), Tamil (‘ta’), Telugu (‘te’), Hindi
71
+ (‘hi’), and Bengali (‘bn’).
72
+
73
+ ### Supported Tasks and Leaderboards
74
+
75
+ **Tasks:** Inter-Bilingual Semantic Parsing
76
+
77
+ **Leaderboards:** Currently there is no Leaderboard for this dataset.
78
+
79
+ ### Languages
80
+
81
+ - `Assamese (as)`
82
+ - `Bengali (bn)`
83
+ - `Gujarati (gu)`
84
+ - `Kannada (kn)`
85
+ - `Hindi (hi)`
86
+ - `Malayalam (ml)`
87
+ - `Marathi (mr)`
88
+ - `Oriya (or)`
89
+ - `Punjabi (pa)`
90
+ - `Tamil (ta)`
91
+ - `Telugu (te)`
92
+
93
+ ...
94
+
95
+
96
+ ### Data Splits
97
+
98
+ <!-- Below is the dataset split given for `hi` dataset.
99
+
100
+ ```python
101
+ DatasetDict({
102
+ train: Dataset({
103
+ features: ['utterance', 'logical form', 'intent'],
104
+ num_rows: 36000
105
+ })
106
+ test: Dataset({
107
+ features: ['utterance', 'logical form', 'intent'],
108
+ num_rows: 3000
109
+ })
110
+ validation: Dataset({
111
+ features: ['utterance', 'logical form', 'intent'],
112
+ num_rows: 1500
113
+ })
114
+ })
115
+
116
+ ``` -->
117
+
118
+
119
+ ## Dataset usage
120
+
121
+ Code snippet for using the dataset using datasets library.
122
+
123
+ ```python
124
+ from datasets import load_dataset
125
+
126
+ dataset = load_dataset("Divyanshu/IE_SemParse")
127
+ ```
128
+
129
+ ## Dataset Creation
130
+
131
+ Machine translation of 3 multilingual semantic Parsing datasets english dataset to 11 listed Indic Languages.
132
+
133
+ ### Curation Rationale
134
+
135
+ [More information needed]
136
+
137
+ ### Source Data
138
+
139
+ [mTOP dataset](https://aclanthology.org/2021.eacl-main.257/)
140
+
141
+ [multilingualTOP dataset](https://github.com/awslabs/multilingual-top)
142
+
143
+ [multi-ATIS++ dataset](https://paperswithcode.com/paper/end-to-end-slot-alignment-and-recognition-for)
144
+
145
+ #### Initial Data Collection and Normalization
146
+
147
+ [Detailed in the paper](https://arxiv.org/abs/2304.13005)
148
+
149
+ #### Who are the source language producers?
150
+
151
+ [Detailed in the paper](https://arxiv.org/abs/2304.13005)
152
+
153
+ #### Human Verification Process
154
+
155
+ [Detailed in the paper](https://arxiv.org/abs/2304.13005)
156
+
157
+ ## Considerations for Using the Data
158
+
159
+ ### Social Impact of Dataset
160
+
161
+ [Detailed in the paper](https://arxiv.org/abs/2304.13005)
162
+
163
+ ### Discussion of Biases
164
+
165
+ [Detailed in the paper](https://arxiv.org/abs/2304.13005)
166
+
167
+ ### Other Known Limitations
168
+
169
+ [Detailed in the paper](https://arxiv.org/abs/2304.13005)
170
+
171
+ ### Dataset Curators
172
+
173
+ Divyanshu Aggarwal, Vivek Gupta, Anoop Kunchukuttan
174
+
175
+ ### Licensing Information
176
+
177
+ 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.
178
+
179
+ ### Citation Information
180
+
181
+ If you use any of the datasets, models or code modules, please cite the following paper:
182
+
183
+ ```
184
+ @misc{aggarwal2023evaluating,
185
+ title={Evaluating Inter-Bilingual Semantic Parsing for Indian Languages},
186
+ author={Divyanshu Aggarwal and Vivek Gupta and Anoop Kunchukuttan},
187
+ year={2023},
188
+ eprint={2304.13005},
189
+ archivePrefix={arXiv},
190
+ primaryClass={cs.CL}
191
+ }
192
+ ```
193
+
194
+ <!-- ### Contributions -->
.history/README_20230707235703.md ADDED
@@ -0,0 +1,192 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - machine-generated
4
+ language_creators:
5
+ - machine-generated
6
+ language:
7
+ - as
8
+ - bn
9
+ - gu
10
+ - hi
11
+ - kn
12
+ - ml
13
+ - mr
14
+ - or
15
+ - pa
16
+ - ta
17
+ - te
18
+ license:
19
+ - cc0-1.0
20
+ multilinguality:
21
+ - multilingual
22
+ pretty_name: IE-SemParse
23
+ size_categories:
24
+ - 1M<n<10M
25
+ source_datasets:
26
+ - original
27
+ task_categories:
28
+ - text2text-generation
29
+ task_ids:
30
+ - parsing
31
+ ---
32
+
33
+ # Dataset Card for "IE-SemParse"
34
+
35
+ ## Table of Contents
36
+
37
+ - [Dataset Card for "IE-SemParse"](#dataset-card-for-ie-semparse)
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 usage](#dataset-usage)
44
+ - [Dataset Creation](#dataset-creation)
45
+ - [Curation Rationale](#curation-rationale)
46
+ - [Source Data](#source-data)
47
+ - [Initial Data Collection and Normalization](#initial-data-collection-and-normalization)
48
+ - [Who are the source language producers?](#who-are-the-source-language-producers)
49
+ - [Human Verification Process](#human-verification-process)
50
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
51
+ - [Social Impact of Dataset](#social-impact-of-dataset)
52
+ - [Discussion of Biases](#discussion-of-biases)
53
+ - [Other Known Limitations](#other-known-limitations)
54
+ - [Dataset Curators](#dataset-curators)
55
+ - [Licensing Information](#licensing-information)
56
+ - [Citation Information](#citation-information)
57
+
58
+ ## Dataset Description
59
+
60
+ - **Homepage:** <https://github.com/divyanshuaggarwal/IE-SemParse>
61
+ - **Paper:** [Evaluating Inter-Bilingual Semantic Parsing for Indian Languages](https://arxiv.org/abs/2304.13005)
62
+ - **Point of Contact:** [Divyanshu Aggarwal](mailto:divyanshuggrwl@gmail.com)
63
+
64
+ ### Dataset Summary
65
+
66
+ IE-SemParse is an InterBilingual Semantic Parsing Dataset for eleven major Indic languages that includes
67
+ Assamese (‘as’), Gujarat (‘gu’), Kannada (‘kn’),
68
+ Malayalam (‘ml’), Marathi (‘mr’), Odia (‘or’),
69
+ Punjabi (‘pa’), Tamil (‘ta’), Telugu (‘te’), Hindi
70
+ (‘hi’), and Bengali (‘bn’).
71
+
72
+ ### Supported Tasks and Leaderboards
73
+
74
+ **Tasks:** Inter-Bilingual Semantic Parsing
75
+
76
+ **Leaderboards:** Currently there is no Leaderboard for this dataset.
77
+
78
+ ### Languages
79
+
80
+ - `Assamese (as)`
81
+ - `Bengali (bn)`
82
+ - `Gujarati (gu)`
83
+ - `Kannada (kn)`
84
+ - `Hindi (hi)`
85
+ - `Malayalam (ml)`
86
+ - `Marathi (mr)`
87
+ - `Oriya (or)`
88
+ - `Punjabi (pa)`
89
+ - `Tamil (ta)`
90
+ - `Telugu (te)`
91
+
92
+ ...
93
+
94
+
95
+
96
+ <!-- Below is the dataset split given for `hi` dataset.
97
+
98
+ ```python
99
+ DatasetDict({
100
+ train: Dataset({
101
+ features: ['utterance', 'logical form', 'intent'],
102
+ num_rows: 36000
103
+ })
104
+ test: Dataset({
105
+ features: ['utterance', 'logical form', 'intent'],
106
+ num_rows: 3000
107
+ })
108
+ validation: Dataset({
109
+ features: ['utterance', 'logical form', 'intent'],
110
+ num_rows: 1500
111
+ })
112
+ })
113
+
114
+ ``` -->
115
+
116
+
117
+ ## Dataset usage
118
+
119
+ Code snippet for using the dataset using datasets library.
120
+
121
+ ```python
122
+ from datasets import load_dataset
123
+
124
+ dataset = load_dataset("Divyanshu/IE_SemParse")
125
+ ```
126
+
127
+ ## Dataset Creation
128
+
129
+ Machine translation of 3 multilingual semantic Parsing datasets english dataset to 11 listed Indic Languages.
130
+
131
+ ### Curation Rationale
132
+
133
+ [More information needed]
134
+
135
+ ### Source Data
136
+
137
+ [mTOP dataset](https://aclanthology.org/2021.eacl-main.257/)
138
+
139
+ [multilingualTOP dataset](https://github.com/awslabs/multilingual-top)
140
+
141
+ [multi-ATIS++ dataset](https://paperswithcode.com/paper/end-to-end-slot-alignment-and-recognition-for)
142
+
143
+ #### Initial Data Collection and Normalization
144
+
145
+ [Detailed in the paper](https://arxiv.org/abs/2304.13005)
146
+
147
+ #### Who are the source language producers?
148
+
149
+ [Detailed in the paper](https://arxiv.org/abs/2304.13005)
150
+
151
+ #### Human Verification Process
152
+
153
+ [Detailed in the paper](https://arxiv.org/abs/2304.13005)
154
+
155
+ ## Considerations for Using the Data
156
+
157
+ ### Social Impact of Dataset
158
+
159
+ [Detailed in the paper](https://arxiv.org/abs/2304.13005)
160
+
161
+ ### Discussion of Biases
162
+
163
+ [Detailed in the paper](https://arxiv.org/abs/2304.13005)
164
+
165
+ ### Other Known Limitations
166
+
167
+ [Detailed in the paper](https://arxiv.org/abs/2304.13005)
168
+
169
+ ### Dataset Curators
170
+
171
+ Divyanshu Aggarwal, Vivek Gupta, Anoop Kunchukuttan
172
+
173
+ ### Licensing Information
174
+
175
+ 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.
176
+
177
+ ### Citation Information
178
+
179
+ If you use any of the datasets, models or code modules, please cite the following paper:
180
+
181
+ ```
182
+ @misc{aggarwal2023evaluating,
183
+ title={Evaluating Inter-Bilingual Semantic Parsing for Indian Languages},
184
+ author={Divyanshu Aggarwal and Vivek Gupta and Anoop Kunchukuttan},
185
+ year={2023},
186
+ eprint={2304.13005},
187
+ archivePrefix={arXiv},
188
+ primaryClass={cs.CL}
189
+ }
190
+ ```
191
+
192
+ <!-- ### Contributions -->
README.md CHANGED
@@ -40,7 +40,6 @@ task_ids:
40
  - [Dataset Summary](#dataset-summary)
41
  - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
42
  - [Languages](#languages)
43
- - [Data Splits](#data-splits)
44
  - [Dataset usage](#dataset-usage)
45
  - [Dataset Creation](#dataset-creation)
46
  - [Curation Rationale](#curation-rationale)
@@ -72,7 +71,7 @@ Punjabi (‘pa’), Tamil (‘ta’), Telugu (‘te’), Hindi
72
 
73
  ### Supported Tasks and Leaderboards
74
 
75
- **Tasks:** Natural Language Inference
76
 
77
  **Leaderboards:** Currently there is no Leaderboard for this dataset.
78
 
@@ -93,7 +92,6 @@ Punjabi (‘pa’), Tamil (‘ta’), Telugu (‘te’), Hindi
93
  ...
94
 
95
 
96
- ### Data Splits
97
 
98
  <!-- Below is the dataset split given for `hi` dataset.
99
 
 
40
  - [Dataset Summary](#dataset-summary)
41
  - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
42
  - [Languages](#languages)
 
43
  - [Dataset usage](#dataset-usage)
44
  - [Dataset Creation](#dataset-creation)
45
  - [Curation Rationale](#curation-rationale)
 
71
 
72
  ### Supported Tasks and Leaderboards
73
 
74
+ **Tasks:** Inter-Bilingual Semantic Parsing
75
 
76
  **Leaderboards:** Currently there is no Leaderboard for this dataset.
77
 
 
92
  ...
93
 
94
 
 
95
 
96
  <!-- Below is the dataset split given for `hi` dataset.
97