Datasets:

Modalities:
Text
ArXiv:
Libraries:
Datasets
License:
parquet-converter commited on
Commit
86f2191
1 Parent(s): d74c67a

Update parquet files

Browse files
Files changed (43) hide show
  1. IndicParaphrase.py +0 -134
  2. README.md +0 -216
  3. data/as_IndicParaphrase_v1.0.zip → as/indic_paraphrase-test.parquet +2 -2
  4. data/kn_IndicParaphrase_v1.0.zip → as/indic_paraphrase-validation.parquet +2 -2
  5. data/gu_IndicParaphrase_v1.0.zip → bn/indic_paraphrase-test.parquet +2 -2
  6. data/bn_IndicParaphrase_v1.0.zip → bn/indic_paraphrase-train-00000-of-00002.parquet +2 -2
  7. data/mr_IndicParaphrase_v1.0.zip → bn/indic_paraphrase-train-00001-of-00002.parquet +2 -2
  8. bn/indic_paraphrase-validation.parquet +3 -0
  9. data/.gitattributes +0 -22
  10. data/ml_IndicParaphrase_v1.0.zip +0 -3
  11. data/or_IndicParaphrase_v1.0.zip +0 -3
  12. data/pa_IndicParaphrase_v1.0.zip +0 -3
  13. data/ta_IndicParaphrase_v1.0.zip +0 -3
  14. data/te_IndicParaphrase_v1.0.zip +0 -3
  15. gu/indic_paraphrase-test.parquet +3 -0
  16. gu/indic_paraphrase-train.parquet +3 -0
  17. gu/indic_paraphrase-validation.parquet +3 -0
  18. hi/indic_paraphrase-test.parquet +3 -0
  19. data/hi_IndicParaphrase_v1.0.zip → hi/indic_paraphrase-train-00000-of-00002.parquet +2 -2
  20. hi/indic_paraphrase-train-00001-of-00002.parquet +3 -0
  21. hi/indic_paraphrase-validation.parquet +3 -0
  22. kn/indic_paraphrase-test.parquet +3 -0
  23. kn/indic_paraphrase-train.parquet +3 -0
  24. kn/indic_paraphrase-validation.parquet +3 -0
  25. ml/indic_paraphrase-test.parquet +3 -0
  26. ml/indic_paraphrase-train-00000-of-00002.parquet +3 -0
  27. ml/indic_paraphrase-train-00001-of-00002.parquet +3 -0
  28. ml/indic_paraphrase-validation.parquet +3 -0
  29. mr/indic_paraphrase-test.parquet +3 -0
  30. mr/indic_paraphrase-train.parquet +3 -0
  31. mr/indic_paraphrase-validation.parquet +3 -0
  32. or/indic_paraphrase-test.parquet +3 -0
  33. or/indic_paraphrase-train.parquet +3 -0
  34. or/indic_paraphrase-validation.parquet +3 -0
  35. pa/indic_paraphrase-test.parquet +3 -0
  36. pa/indic_paraphrase-train.parquet +3 -0
  37. pa/indic_paraphrase-validation.parquet +3 -0
  38. ta/indic_paraphrase-test.parquet +3 -0
  39. ta/indic_paraphrase-train.parquet +3 -0
  40. ta/indic_paraphrase-validation.parquet +3 -0
  41. te/indic_paraphrase-test.parquet +3 -0
  42. te/indic_paraphrase-train.parquet +3 -0
  43. te/indic_paraphrase-validation.parquet +3 -0
IndicParaphrase.py DELETED
@@ -1,134 +0,0 @@
1
-
2
-
3
-
4
- import json
5
- import os
6
-
7
- import datasets
8
-
9
- _CITATION = """\
10
- @inproceedings{Kumar2022IndicNLGSM,
11
- title={IndicNLG Suite: Multilingual Datasets for Diverse NLG Tasks in Indic Languages},
12
- author={Aman Kumar and Himani Shrotriya and Prachi Sahu and Raj Dabre and Ratish Puduppully and Anoop Kunchukuttan and Amogh Mishra and Mitesh M. Khapra and Pratyush Kumar},
13
- year={2022},
14
- url = "https://arxiv.org/abs/2203.05437"
15
- }
16
- """
17
-
18
- _DESCRIPTION = """\
19
- This is the paraphrasing dataset released as part of IndicNLG Suite. Each
20
- input is paired with up to 5 references. We create this dataset in eleven
21
- languages including as, bn, gu, hi, kn, ml, mr, or, pa, ta, te. The total
22
- size of the dataset is 5.57M.
23
-
24
- """
25
- _HOMEPAGE = "https://indicnlp.ai4bharat.org/indicnlg-suite"
26
-
27
- _LICENSE = "Creative Commons Attribution-NonCommercial 4.0 International Public License"
28
-
29
- _URL = "https://huggingface.co/datasets/ai4bharat/IndicParaphrase/resolve/main/data/{}_IndicParaphrase_v{}.zip"
30
-
31
-
32
- _LANGUAGES = [
33
- "as",
34
- "bn",
35
- "gu",
36
- "hi",
37
- "kn",
38
- "ml",
39
- "mr",
40
- "or",
41
- "pa",
42
- "ta",
43
- "te"
44
- ]
45
-
46
-
47
- class IndicParaphrase(datasets.GeneratorBasedBuilder):
48
- VERSION = datasets.Version("1.0.0")
49
-
50
- BUILDER_CONFIGS = [
51
- datasets.BuilderConfig(
52
- name="{}".format(lang),
53
- version=datasets.Version("1.0.0")
54
- )
55
- for lang in _LANGUAGES
56
- ]
57
-
58
- def _info(self):
59
- return datasets.DatasetInfo(
60
- description=_DESCRIPTION,
61
- features=datasets.Features(
62
- {
63
- "id": datasets.Value("string"),
64
- "pivot": datasets.Value("string"),
65
- "input": datasets.Value("string"),
66
- "target": datasets.Value("string"),
67
- "references": [datasets.Value("string")]
68
- }
69
- ),
70
- supervised_keys=None,
71
- homepage=_HOMEPAGE,
72
- citation=_CITATION,
73
- license=_LICENSE,
74
- version=self.VERSION,
75
- )
76
-
77
- def _split_generators(self, dl_manager):
78
- """Returns SplitGenerators."""
79
- lang = str(self.config.name)
80
- url = _URL.format(lang, self.VERSION.version_str[:-2])
81
-
82
- data_dir = dl_manager.download_and_extract(url)
83
- if lang == 'as' :
84
- return [
85
- datasets.SplitGenerator(
86
- name=datasets.Split.TEST,
87
- gen_kwargs={
88
- "filepath": os.path.join(data_dir, "test_" + lang + ".jsonl"),
89
- },
90
- ),
91
- datasets.SplitGenerator(
92
- name=datasets.Split.VALIDATION,
93
- gen_kwargs={
94
- "filepath": os.path.join(data_dir, "dev_" + lang + ".jsonl"),
95
- },
96
- ),
97
- ]
98
- else :
99
- return [
100
- datasets.SplitGenerator(
101
- name=datasets.Split.TRAIN,
102
- gen_kwargs={
103
- "filepath": os.path.join(data_dir, "train_" + lang + ".jsonl"),
104
- },
105
- ),
106
- datasets.SplitGenerator(
107
- name=datasets.Split.TEST,
108
- gen_kwargs={
109
- "filepath": os.path.join(data_dir, "test_" + lang + ".jsonl"),
110
- },
111
- ),
112
- datasets.SplitGenerator(
113
- name=datasets.Split.VALIDATION,
114
- gen_kwargs={
115
- "filepath": os.path.join(data_dir, "dev_" + lang + ".jsonl"),
116
- },
117
- ),
118
- ]
119
-
120
-
121
-
122
- def _generate_examples(self, filepath):
123
- """Yields examples as (key, example) tuples."""
124
- with open(filepath, encoding="utf-8") as f:
125
- for idx_, row in enumerate(f):
126
- data = json.loads(row)
127
- yield idx_, {
128
- "id": data["id"],
129
- "pivot": data["pivot"],
130
- "input": data["input"],
131
- "target": data["target"],
132
- "references": data["references"]
133
-
134
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
README.md DELETED
@@ -1,216 +0,0 @@
1
- ---
2
- annotations_creators:
3
- - no-annotation
4
- language_creators:
5
- - found
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
- - cc-by-nc-4.0
20
- multilinguality:
21
- - multilingual
22
- pretty_name: IndicParaphrase
23
- size_categories:
24
- - 1M<n<10M
25
- source_datasets:
26
- - original
27
- task_categories:
28
- - conditional-text-generation
29
- task_ids:
30
- - conditional-text-generation-other-paraphrase-generation
31
- ---
32
-
33
- # Dataset Card for "IndicParaphrase"
34
-
35
- ## Table of Contents
36
- - [Dataset Card Creation Guide](#dataset-card-creation-guide)
37
- - [Table of Contents](#table-of-contents)
38
- - [Dataset Description](#dataset-description)
39
- - [Dataset Summary](#dataset-summary)
40
- - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
41
- - [Languages](#languages)
42
- - [Dataset Structure](#dataset-structure)
43
- - [Data Instances](#data-instances)
44
- - [Data Fields](#data-fields)
45
- - [Data Splits](#data-splits)
46
- - [Dataset Creation](#dataset-creation)
47
- - [Curation Rationale](#curation-rationale)
48
- - [Source Data](#source-data)
49
- - [Initial Data Collection and Normalization](#initial-data-collection-and-normalization)
50
- - [Who are the source language producers?](#who-are-the-source-language-producers)
51
- - [Annotations](#annotations)
52
- - [Annotation process](#annotation-process)
53
- - [Who are the annotators?](#who-are-the-annotators)
54
- - [Personal and Sensitive Information](#personal-and-sensitive-information)
55
- - [Considerations for Using the Data](#considerations-for-using-the-data)
56
- - [Social Impact of Dataset](#social-impact-of-dataset)
57
- - [Discussion of Biases](#discussion-of-biases)
58
- - [Other Known Limitations](#other-known-limitations)
59
- - [Additional Information](#additional-information)
60
- - [Dataset Curators](#dataset-curators)
61
- - [Licensing Information](#licensing-information)
62
- - [Citation Information](#citation-information)
63
- - [Contributions](#contributions)
64
-
65
- ## Dataset Description
66
-
67
- - **Homepage:** https://indicnlp.ai4bharat.org/indicnlg-suite
68
- - **Paper:** [IndicNLG Suite: Multilingual Datasets for Diverse NLG Tasks in Indic Languages](https://arxiv.org/abs/2203.05437)
69
- - **Point of Contact:**
70
-
71
- ### Dataset Summary
72
-
73
- IndicParaphrase is the paraphrasing dataset released as part of IndicNLG Suite. Each
74
- input is paired with up to 5 references. We create this dataset in eleven
75
- languages including as, bn, gu, hi, kn, ml, mr, or, pa, ta, te. The total
76
- size of the dataset is 5.57M.
77
-
78
-
79
- ### Supported Tasks and Leaderboards
80
-
81
- **Tasks:** Paraphrase generation
82
-
83
- **Leaderboards:** Currently there is no Leaderboard for this dataset.
84
-
85
- ### Languages
86
- - `Assamese (as)`
87
- - `Bengali (bn)`
88
- - `Gujarati (gu)`
89
- - `Kannada (kn)`
90
- - `Hindi (hi)`
91
- - `Malayalam (ml)`
92
- - `Marathi (mr)`
93
- - `Oriya (or)`
94
- - `Punjabi (pa)`
95
- - `Tamil (ta)`
96
- - `Telugu (te)`
97
-
98
- ## Dataset Structure
99
-
100
- ### Data Instances
101
-
102
- One example from the `hi` dataset is given below in JSON format.
103
- ```
104
- {
105
- 'id': '1',
106
- 'input': 'निजी क्षेत्र में प्रदेश की 75 प्रतिशत नौकरियां हरियाणा के युवाओं के लिए आरक्षित की जाएगी।',
107
- 'references': ['प्रदेश के युवाओं को निजी उद्योगों में 75 प्रतिशत आरक्षण देंगे।',
108
- 'युवाओं के लिए हरियाणा की सभी प्राइवेट नौकरियों में 75 प्रतिशत आरक्षण लागू किया जाएगा।',
109
- 'निजी क्षेत्र में 75 प्रतिशत आरक्षित लागू कर प्रदेश के युवाओं का रोजगार सुनिश्चत किया जाएगा।',
110
- 'प्राईवेट कम्पनियों में हरियाणा के नौजवानों को 75 प्रतिशत नौकरियां में आरक्षित की जाएगी।',
111
- 'प्रदेश की प्राइवेट फैक्टरियों में 75 फीसदी रोजगार हरियाणा के युवाओं के लिए आरक्षित किए जाएंगे।'],
112
- 'target': 'प्रदेश के युवाओं को निजी उद्योगों में 75 प्रतिशत आरक्षण देंगे।'
113
- }
114
- ```
115
-
116
- ### Data Fields
117
- - `id (string)`: Unique identifier.
118
- - `pivot (string)`: English sentence used as the pivot
119
- - `input (string)`: Input sentence
120
- - `references (list of strings)`: Paraphrases of `input`, ordered according to the least n-gram overlap
121
- - `target (string)`: The first reference (most dissimilar paraphrase)
122
-
123
-
124
-
125
- ### Data Splits
126
-
127
- We first select 10K instances each for the validation and test and put remaining in the training dataset. `Assamese (as)`, due to its low-resource nature, could only be split into validation and test sets with 4,420 examples each.
128
- Individual dataset with train-dev-test example counts are given below:
129
-
130
-
131
- Language | ISO 639-1 Code |Train | Dev | Test |
132
- --------------|----------------|-------|-----|------|
133
- Assamese | as | - | 4,420 | 4,420 |
134
- Bengali | bn | 890,445 | 10,000 | 10,000 |
135
- Gujarati | gu | 379,202 | 10,000 | 10,000 |
136
- Hindi | hi | 929,507 | 10,000 | 10,000 |
137
- Kannada | kn | 522,148 | 10,000 | 10,000 |
138
- Malayalam | ml |761,933 | 10,000 | 10,000 |
139
- Marathi | mr |406,003 | 10,000 | 10,000 |
140
- Oriya | or | 105,970 | 10,000 | 10,000 |
141
- Punjabi | pa | 266,704 | 10,000 | 10,000 |
142
- Tamil | ta | 497,798 | 10,000 | 10,000 |
143
- Telugu | te | 596,283 | 10,000 | 10,000 |
144
-
145
-
146
- ## Dataset Creation
147
-
148
- ### Curation Rationale
149
-
150
- [More information needed]
151
-
152
- ### Source Data
153
-
154
- [Samanantar dataset](https://indicnlp.ai4bharat.org/samanantar/)
155
-
156
- #### Initial Data Collection and Normalization
157
-
158
- [Detailed in the paper](https://arxiv.org/abs/2203.05437)
159
-
160
-
161
- #### Who are the source language producers?
162
-
163
- [Detailed in the paper](https://arxiv.org/abs/2203.05437)
164
-
165
-
166
- ### Annotations
167
- [More information needed]
168
- #### Annotation process
169
- [More information needed]
170
-
171
- #### Who are the annotators?
172
-
173
- [More information needed]
174
-
175
- ### Personal and Sensitive Information
176
-
177
- [More information needed]
178
-
179
- ## Considerations for Using the Data
180
-
181
- ### Social Impact of Dataset
182
-
183
- [More information needed]
184
-
185
- ### Discussion of Biases
186
-
187
- [More information needed]
188
-
189
- ### Other Known Limitations
190
-
191
- [More information needed]
192
-
193
- ## Additional Information
194
-
195
- ### Dataset Curators
196
-
197
- [More information needed]
198
-
199
- ### Licensing Information
200
-
201
- 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.
202
- ### Citation Information
203
-
204
- If you use any of the datasets, models or code modules, please cite the following paper:
205
- ```
206
- @inproceedings{Kumar2022IndicNLGSM,
207
- title={IndicNLG Suite: Multilingual Datasets for Diverse NLG Tasks in Indic Languages},
208
- author={Aman Kumar and Himani Shrotriya and Prachi Sahu and Raj Dabre and Ratish Puduppully and Anoop Kunchukuttan and Amogh Mishra and Mitesh M. Khapra and Pratyush Kumar},
209
- year={2022},
210
- url = "https://arxiv.org/abs/2203.05437"
211
- }
212
- ```
213
-
214
-
215
- ### Contributions
216
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/as_IndicParaphrase_v1.0.zip → as/indic_paraphrase-test.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:bc83f228d61120fafc2da13fa0b44d212c57a0feb8d633e3f41b86b3c816b603
3
- size 767005
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:725fea94b488dd751f7eb9961cc1985a9b42b27f20cd2028744c1521eda3ab50
3
+ size 954089
data/kn_IndicParaphrase_v1.0.zip → as/indic_paraphrase-validation.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:abdc8b2a889e6140ba8c004cb6c9a877cc2bc08ff65237b7a39a742ffa18c5fa
3
- size 65673418
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8dfc6e1d5c08bbd18229457530fd14179ea2f8eb809c2105a5c3a6da26214f75
3
+ size 854669
data/gu_IndicParaphrase_v1.0.zip → bn/indic_paraphrase-test.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:20900ffa1d1ef731b3ebff3d0318de4436e3b1b0053e9203bfa9e9467ebb93d1
3
- size 48105681
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee7a42336a6446d910293111683fb2f3f6436bc86eb87b41d7dab376718edb3e
3
+ size 2937066
data/bn_IndicParaphrase_v1.0.zip → bn/indic_paraphrase-train-00000-of-00002.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c22b6dc9df7ed09c38e0f449f45eff45f52a5938b38139c8173b518a0a71b3a2
3
- size 129315017
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22da2ecf9471fc401504590e9a3720f39d59f0a9c46f2f55f8654550a1b92efe
3
+ size 226316163
data/mr_IndicParaphrase_v1.0.zip → bn/indic_paraphrase-train-00001-of-00002.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:034b87f3fd04d941efb3c98c903b192ae332b220ebd19b77164882e99e193841
3
- size 55085894
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:877111d1e5739a2c16aeadc7b7adec3ace8716789da11666c1c09f6b4607bfc2
3
+ size 52926098
bn/indic_paraphrase-validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:39c8cbca93d77363d53475fdbfe192469c4f876d8fc824108218de581f03ba49
3
+ size 2955295
data/.gitattributes DELETED
@@ -1,22 +0,0 @@
1
- ml_IndicParaphrase_v1.0.tar.bz2 filter=lfs diff=lfs merge=lfs -text
2
- te_IndicParaphrase_v1.0.tar.bz2 filter=lfs diff=lfs merge=lfs -text
3
- bn_IndicParaphrase_v1.0.tar.bz2 filter=lfs diff=lfs merge=lfs -text
4
- hi_IndicParaphrase_v1.0.tar.bz2 filter=lfs diff=lfs merge=lfs -text
5
- kn_IndicParaphrase_v1.0.tar.bz2 filter=lfs diff=lfs merge=lfs -text
6
- mr_IndicParaphrase_v1.0.tar.bz2 filter=lfs diff=lfs merge=lfs -text
7
- or_IndicParaphrase_v1.0.tar.bz2 filter=lfs diff=lfs merge=lfs -text
8
- pa_IndicParaphrase_v1.0.tar.bz2 filter=lfs diff=lfs merge=lfs -text
9
- ta_IndicParaphrase_v1.0.tar.bz2 filter=lfs diff=lfs merge=lfs -text
10
- as_IndicParaphrase_v1.0.tar.bz2 filter=lfs diff=lfs merge=lfs -text
11
- gu_IndicParaphrase_v1.0.tar.bz2 filter=lfs diff=lfs merge=lfs -text
12
- ml_IndicParaphrase_v1.0.zip filter=lfs diff=lfs merge=lfs -text
13
- or_IndicParaphrase_v1.0.zip filter=lfs diff=lfs merge=lfs -text
14
- pa_IndicParaphrase_v1.0.zip filter=lfs diff=lfs merge=lfs -text
15
- ta_IndicParaphrase_v1.0.zip filter=lfs diff=lfs merge=lfs -text
16
- as_IndicParaphrase_v1.0.zip filter=lfs diff=lfs merge=lfs -text
17
- hi_IndicParaphrase_v1.0.zip filter=lfs diff=lfs merge=lfs -text
18
- kn_IndicParaphrase_v1.0.zip filter=lfs diff=lfs merge=lfs -text
19
- te_IndicParaphrase_v1.0.zip filter=lfs diff=lfs merge=lfs -text
20
- bn_IndicParaphrase_v1.0.zip filter=lfs diff=lfs merge=lfs -text
21
- gu_IndicParaphrase_v1.0.zip filter=lfs diff=lfs merge=lfs -text
22
- mr_IndicParaphrase_v1.0.zip filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/ml_IndicParaphrase_v1.0.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:8a8f9603ebb51564f0a9db7d7cd3b01300fcf77c07a085d408b121400cfdf529
3
- size 122504791
 
 
 
 
data/or_IndicParaphrase_v1.0.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:b67d2642449173360cb36865b67c993baa12c30620761e663e7723d3f1d1917d
3
- size 16189297
 
 
 
 
data/pa_IndicParaphrase_v1.0.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:25172d28c108ff3e92638d15333d2acbb620843a189566dd6be1198d60016909
3
- size 39277393
 
 
 
 
data/ta_IndicParaphrase_v1.0.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:c4038cdd48534d49bb7bf3c3bbe1621a68cf506d125f6414f185cd208b7548c0
3
- size 65296624
 
 
 
 
data/te_IndicParaphrase_v1.0.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:7e67ccd207808b0b4abc286950d9ae0ad21a2495c340bec5db40369a1c677f89
3
- size 82052400
 
 
 
 
gu/indic_paraphrase-test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:caac8fb954dda55e32ddf2574ff1d8b2418e0e713cfece77ccd38df85c1a1327
3
+ size 3341524
gu/indic_paraphrase-train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5526699273be954f0210924455f893aa9d8208636174eed25533b6ce396c68b
3
+ size 98506965
gu/indic_paraphrase-validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0b6b38aa8647a020051c78944921798358133eacdcad047c0f1f05607512d68
3
+ size 3288851
hi/indic_paraphrase-test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:830719c3584cc8b8133a0a4dbe4a3ad67190394cfd92b7c382db4a2cdfaa7da9
3
+ size 4492681
data/hi_IndicParaphrase_v1.0.zip → hi/indic_paraphrase-train-00000-of-00002.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:bc36481258da249aec4e91272327de362cd3b58031932e01e84e3b28c60030cc
3
- size 174095690
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca9436f7b12f84baa800ed089936d0eebd67f17c09b1cdc4360e61821c2dbd82
3
+ size 214524309
hi/indic_paraphrase-train-00001-of-00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55a3fec1162bff6bb36b5b9e1362dc6c4b37ad51f63c3d6fe2b8b6ca73946108
3
+ size 162463286
hi/indic_paraphrase-validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a927d012a8f61913f786e3b9f6ab6b8cc94b3ac215ed814dd7d1bc45b26ef7a
3
+ size 4486281
kn/indic_paraphrase-test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a341f46aa0cd54846dbb477249fae99c156c93a2d6144d9021dfdc1f6a1a7efa
3
+ size 3215626
kn/indic_paraphrase-train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bbbf9d195dddc04cb38a42e73c3928e171d467a2e2217412aa4164fedd6498ee
3
+ size 139707358
kn/indic_paraphrase-validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7d90942f68e9c2881525eae68dbb66656a971f8618b9abe7b4f0e3be8d1c810
3
+ size 3234755
ml/indic_paraphrase-test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ced83e890fa8e1a3769440a28c201ff723f140afb081c59632ebb9cab5863317
3
+ size 4075856
ml/indic_paraphrase-train-00000-of-00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5b95e78e42916effeddbc140a818a1b9a7c07e5fc282900862b0f9c18431a22
3
+ size 205106844
ml/indic_paraphrase-train-00001-of-00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c53b6b3f1360c0c10cd83df4179f297260eba07caa7bd9e12475551b26f23420
3
+ size 73033206
ml/indic_paraphrase-validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6127b5e64c0ff05f37fbeaa6616f6c7dc0012e0789076b0e5484c7a8b16d0850
3
+ size 4040515
mr/indic_paraphrase-test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f457c8a3e2fbef6503083c63b96c198cad7c62dc4ac2e1217f1044d2ab690cb
3
+ size 3722946
mr/indic_paraphrase-train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc0561c46d98158278956eeded6859dfd9b0ad4f7f5b560afc8aad3dd8204ebe
3
+ size 114596234
mr/indic_paraphrase-validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ad5864f6b832e55b1cb624e2b7c7ddb1d855da68a70882598ba76b19cd048c0
3
+ size 3746075
or/indic_paraphrase-test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:398492cf0aafcb608947b85a8bc24021cc2e5997b9d7f0a5cbeaff53d8b125ad
3
+ size 3867099
or/indic_paraphrase-train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6ed14defe97fef13810f9ddf1fa0da1a4db276844e2c33ad6607e01f10404d2e
3
+ size 29300884
or/indic_paraphrase-validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a93341505eae1a12d306420d1d7493ba1603550cc6963801bd58f9ce2f7e582
3
+ size 3818644
pa/indic_paraphrase-test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44f04ae2527262bb37b61ab45bab9d7db910c5b0e94d7c777dac07faed8f6cbb
3
+ size 4294331
pa/indic_paraphrase-train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b29d515e3d0ab244aeb2e6b66d06a117ce950094fa9b74475481fedf638e855
3
+ size 77361610
pa/indic_paraphrase-validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0287089a3c4192e939df4b365f87e2f2c45d3199de288f7e21107d04c435bd91
3
+ size 4154154
ta/indic_paraphrase-test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ceddd90b5f6f2a4a1175dbfcb913937be13f443aad0578f22dbc1648f237ee6b
3
+ size 3520173
ta/indic_paraphrase-train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c2b89e31c5ff2c017ef70c6e0b36c1159dc5532b061332394207305c5392b0f
3
+ size 144016870
ta/indic_paraphrase-validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a08ecb2cbe387242979c2667ed15c794cdf116eb3c2bbeaf40542d47fe9bebde
3
+ size 3524097
te/indic_paraphrase-test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:902d0306d101728f149188f62971437aec8007d380924f4e66e92352bacc87cf
3
+ size 3640089
te/indic_paraphrase-train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db6fea840f56a5b90ace5239ea1425e938bc6b1063767cf96276435c9c2299fa
3
+ size 175400708
te/indic_paraphrase-validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83fe0183b86c7b991e329f78aef23f89691b457770103dd5392ed95d377aa9b8
3
+ size 3658845