Datasets:

Modalities:
Text
ArXiv:
Libraries:
Datasets
License:
parquet-converter commited on
Commit
b90e167
1 Parent(s): d984563

Update parquet files

Browse files
Files changed (43) hide show
  1. IndicHeadlineGeneration.py +0 -112
  2. README.md +0 -210
  3. data/ml_IndicHeadlineGeneration_v1.0.zip → as/indic_headline_generation-test.parquet +2 -2
  4. data/or_IndicHeadlineGeneration_v1.0.zip → as/indic_headline_generation-train.parquet +2 -2
  5. data/as_IndicHeadlineGeneration_v1.0.zip → as/indic_headline_generation-validation.parquet +2 -2
  6. data/pa_IndicHeadlineGeneration_v1.0.zip → bn/indic_headline_generation-test.parquet +2 -2
  7. data/gu_IndicHeadlineGeneration_v1.0.zip → bn/indic_headline_generation-train.parquet +2 -2
  8. bn/indic_headline_generation-validation.parquet +3 -0
  9. data/kn_IndicHeadlineGeneration_v1.0.zip +0 -3
  10. data/mr_IndicHeadlineGeneration_v1.0.zip +0 -3
  11. data/ta_IndicHeadlineGeneration_v1.0.zip +0 -3
  12. data/te_IndicHeadlineGeneration_v1.0.zip +0 -3
  13. gu/indic_headline_generation-test.parquet +3 -0
  14. data/hi_IndicHeadlineGeneration_v1.0.zip → gu/indic_headline_generation-train-00000-of-00002.parquet +2 -2
  15. gu/indic_headline_generation-train-00001-of-00002.parquet +3 -0
  16. gu/indic_headline_generation-validation.parquet +3 -0
  17. hi/indic_headline_generation-test.parquet +3 -0
  18. data/bn_IndicHeadlineGeneration_v1.0.zip → hi/indic_headline_generation-train-00000-of-00003.parquet +2 -2
  19. hi/indic_headline_generation-train-00001-of-00003.parquet +3 -0
  20. hi/indic_headline_generation-train-00002-of-00003.parquet +3 -0
  21. hi/indic_headline_generation-validation.parquet +3 -0
  22. kn/indic_headline_generation-test.parquet +3 -0
  23. kn/indic_headline_generation-train-00000-of-00002.parquet +3 -0
  24. kn/indic_headline_generation-train-00001-of-00002.parquet +3 -0
  25. kn/indic_headline_generation-validation.parquet +3 -0
  26. ml/indic_headline_generation-test.parquet +3 -0
  27. ml/indic_headline_generation-train.parquet +3 -0
  28. ml/indic_headline_generation-validation.parquet +3 -0
  29. mr/indic_headline_generation-test.parquet +3 -0
  30. mr/indic_headline_generation-train.parquet +3 -0
  31. mr/indic_headline_generation-validation.parquet +3 -0
  32. or/indic_headline_generation-test.parquet +3 -0
  33. or/indic_headline_generation-train.parquet +3 -0
  34. or/indic_headline_generation-validation.parquet +3 -0
  35. pa/indic_headline_generation-test.parquet +3 -0
  36. pa/indic_headline_generation-train.parquet +3 -0
  37. pa/indic_headline_generation-validation.parquet +3 -0
  38. ta/indic_headline_generation-test.parquet +3 -0
  39. ta/indic_headline_generation-train.parquet +3 -0
  40. ta/indic_headline_generation-validation.parquet +3 -0
  41. te/indic_headline_generation-test.parquet +3 -0
  42. te/indic_headline_generation-train.parquet +3 -0
  43. te/indic_headline_generation-validation.parquet +3 -0
IndicHeadlineGeneration.py DELETED
@@ -1,112 +0,0 @@
1
-
2
-
3
- import json
4
- import os
5
-
6
- import datasets
7
-
8
- _CITATION = """\
9
- @inproceedings{Kumar2022IndicNLGSM,
10
- title={IndicNLG Suite: Multilingual Datasets for Diverse NLG Tasks in Indic Languages},
11
- 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},
12
- year={2022},
13
- url = "https://arxiv.org/abs/2203.05437"
14
- }
15
- """
16
-
17
- _DESCRIPTION = """\
18
- This is the new headline generation dataset released as part of IndicNLG Suite. Each
19
- input document is paired an output title. We create this dataset in eleven
20
- languages including as, bn, gu, hi, kn, ml, mr, or, pa, ta, te. The total
21
- size of the dataset is 1.43M.
22
- """
23
- _HOMEPAGE = "https://indicnlp.ai4bharat.org/indicnlg-suite"
24
-
25
- _LICENSE = "Creative Commons Attribution-NonCommercial 4.0 International Public License"
26
-
27
- _URL = "https://huggingface.co/datasets/ai4bharat/IndicHeadlineGeneration/resolve/main/data/{}_IndicHeadlineGeneration_v{}.zip"
28
-
29
-
30
- _LANGUAGES = [
31
- "as",
32
- "bn",
33
- "gu",
34
- "hi",
35
- "kn",
36
- "ml",
37
- "mr",
38
- "or",
39
- "pa",
40
- "ta",
41
- "te"
42
- ]
43
-
44
-
45
- class IndicHeadlineGeneration(datasets.GeneratorBasedBuilder):
46
- VERSION = datasets.Version("1.0.0")
47
-
48
- BUILDER_CONFIGS = [
49
- datasets.BuilderConfig(
50
- name="{}".format(lang),
51
- version=datasets.Version("1.0.0")
52
- )
53
- for lang in _LANGUAGES
54
- ]
55
-
56
- def _info(self):
57
- return datasets.DatasetInfo(
58
- description=_DESCRIPTION,
59
- features=datasets.Features(
60
- {
61
- "id":datasets.Value("string"),
62
- "input": datasets.Value("string"),
63
- "target": datasets.Value("string"),
64
- "url":datasets.Value("string")
65
- }
66
- ),
67
- supervised_keys=None,
68
- homepage=_HOMEPAGE,
69
- citation=_CITATION,
70
- license=_LICENSE,
71
- version=self.VERSION,
72
- )
73
-
74
- def _split_generators(self, dl_manager):
75
- """Returns SplitGenerators."""
76
- lang = str(self.config.name)
77
- url = _URL.format(lang, self.VERSION.version_str[:-2])
78
-
79
- data_dir = dl_manager.download_and_extract(url)
80
- return [
81
- datasets.SplitGenerator(
82
- name=datasets.Split.TRAIN,
83
- gen_kwargs={
84
- "filepath": os.path.join(data_dir, lang + "_train.jsonl"),
85
- },
86
- ),
87
- datasets.SplitGenerator(
88
- name=datasets.Split.TEST,
89
- gen_kwargs={
90
- "filepath": os.path.join(data_dir, lang + "_test.jsonl"),
91
- },
92
- ),
93
- datasets.SplitGenerator(
94
- name=datasets.Split.VALIDATION,
95
- gen_kwargs={
96
- "filepath": os.path.join(data_dir, lang + "_dev.jsonl"),
97
- },
98
- ),
99
- ]
100
-
101
- def _generate_examples(self, filepath):
102
- """Yields examples as (key, example) tuples."""
103
- with open(filepath, encoding="utf-8") as f:
104
- for idx_, row in enumerate(f):
105
- data = json.loads(row)
106
- yield idx_, {
107
- "id":data["id"],
108
- "input": data["Document"],
109
- "target": data["Title"],
110
- "url":data["URL"]
111
-
112
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
README.md DELETED
@@ -1,210 +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: IndicHeadlineGeneration
23
- size_categories:
24
- - 27K<n<341K
25
- source_datasets:
26
- - original for Hindi, and modified [IndicGLUE](https://indicnlp.ai4bharat.org/indic-glue/) for other languages.
27
- task_categories:
28
- - conditional-text-generation
29
- task_ids:
30
- - conditional-text-generation-other-headline-generation
31
- ---
32
-
33
- # Dataset Card for "IndicHeadlineGeneration"
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
- IndicHeadlineGeneration is the news headline generation dataset released as part of IndicNLG Suite. Each
74
- input document is paired with an output as title. 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 1.4M.
77
-
78
-
79
- ### Supported Tasks and Leaderboards
80
-
81
- **Tasks:** Headline 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 random example from the `hi` dataset is given below in JSON format.
103
- ```
104
- {'id': '14',
105
- 'input': "अमेरिकी सिंगर अरियाना ग्रांडे का नया म्यूजिक एल्बम 'थैंक यू नेक्स्ट' रिलीज हो गया है।एक दिन पहले ही रिलीज हुए इस गाने को देखने वालों की संख्या 37,663,702 पहुंच गई है।यूट्यूब पर अपलोड इस गाने को 24 घंटे के भीतर 3.8 मिलियन लोगों ने पसंद किया है।अरियाना ग्रांडे नई दिल्लीः अमेरिकी सिंगर अरियाना ग्रांडे का नया म्यूजिक एल्बम 'थैंक यू नेक्स्ट' रिलीज हो गया है।एक दिन पहले ही रिलीज हुए इस गाने को देखने वालों की संख्या 37,663,702 पहुंच गई है।यूट्यूब पर अपलोड इस गाने को 24 घंटे के भीतर 3.8 मिलियन लोगों ने पसंद किया है।वहीं इस वीडियो पर कमेंट्स की बाढ़ आ गई है।गाने में मीन गर्ल्स, ब्रिंग इट ऑन, लीगली ब्लॉंड और 13 गोइंग 30 के कुछ फेमस सीन्स को दिखाया गया है।गाने में क्रिस जैनर का कैमियो भी है।बता दें अभी कुछ महीने पहले ही अरियाना के एक्स ब्वॉयफ्रेंड मैक मिल�� का 26 साल की उम्र में निधन हो गया था।इस खबर को सुनकर अरियाना टूट सी गई थीं।उन्होंने सोशल मीडिया पर पोस्ट कर कई बार अपनी भावनाएं व्यक्त की।अरियाना ग्रांडे और रैपर मैक मिलर ने करीब 2 साल तक एक दूसरे को डेट किया।मैक के निधन की वजह ड्रग्स की ओवरडोज बताई गई।दोनों की मुलाकात साल 2012 में हुई थी।दोनों ने एक कंसर्ट में साथ कई गानों पर परफॉर्म भी किया था।जिसके बाद दोनों एक दूसरे को डेट करने लगे लेकिन नशे की लत के कारण अरियाना ने उनसे ब्रेकअप कर लिया।पर देश-विदेश की ताजा और स्पेशल स्टोरी पढ़ते हुए अपने आप को रखिए अप-टू-डेट।के लिए क्लिक करें सिनेमा सेक्शन",
106
- 'target': 'अरियाना ग्रांडे का नया गाना रिलीज, सोशल मीडिया पर वायरल',
107
- 'url': 'https://www.indiatv.in/entertainment/hollywood-ariana-grande-shatters-24-hour-views-record-612835'
108
- }
109
- ```
110
-
111
- ### Data Fields
112
- - `id (string)`: Unique identifier.
113
- - `input (string)`: News article as input.
114
- - `target (strings)`: Output as headline of the news article.
115
- - `url (string)`: Source web link of the news article.
116
-
117
-
118
- ### Data Splits
119
-
120
- Here is the number of samples in each split for all the languages.
121
-
122
-
123
-
124
-
125
- Language | ISO 639-1 Code | Train | Dev | Test |
126
- ---------- | ---------- | ---------- | ---------- | ---------- |
127
- Assamese | as | 29,631 | 14,592 | 14,808 |
128
- Bengali | bn | 113,424 | 14,739 | 14,568 |
129
- Gujarati | gu | 199,972 | 31,270 | 31,215 |
130
- Hindi | hi | 208,221 | 44,738 | 44,514 |
131
- Kannada | kn | 132,380 | 19,416 | 3,261 |
132
- Malayalam | ml | 10,358 | 5,388 | 5,220 |
133
- Marathi | mr | 114,042 | 14,253 | 14,340 |
134
- Oriya | or | 58,225 | 7,484 | 7,137 |
135
- Punjabi | pa | 48,441 | 6,108 | 6,086 |
136
- Tamil | ta | 60,650 | 7,616 | 7,688 |
137
- Telugu | te | 21,352 | 2,690 | 2,675 |
138
-
139
-
140
- ## Dataset Creation
141
-
142
- ### Curation Rationale
143
-
144
- [Detailed in the paper](https://arxiv.org/abs/2203.05437)
145
-
146
- ### Source Data
147
-
148
- For hindi, web sources like [Dainik Bhaskar](https://www.bhaskar.com), [Naidunia](https://www.naidunia.com/), [NDTV](https://ndtv.in/), [Business Standard](https://hindi.business-standard.com/) and [IndiaTV](https://www.indiatv.in/). For other languages, modified [IndicGLUE](https://indicnlp.ai4bharat.org/indic-glue/) dataset.
149
-
150
- #### Initial Data Collection and Normalization
151
-
152
- [Detailed in the paper](https://arxiv.org/abs/2203.05437)
153
-
154
-
155
- #### Who are the source language producers?
156
-
157
- [Detailed in the paper](https://arxiv.org/abs/2203.05437)
158
-
159
-
160
- ### Annotations
161
- [More information needed]
162
- #### Annotation process
163
- [More information needed]
164
-
165
- #### Who are the annotators?
166
-
167
- [More information needed]
168
-
169
- ### Personal and Sensitive Information
170
-
171
- [More information needed]
172
-
173
- ## Considerations for Using the Data
174
-
175
- ### Social Impact of Dataset
176
-
177
- [More information needed]
178
-
179
- ### Discussion of Biases
180
-
181
- [More information needed]
182
-
183
- ### Other Known Limitations
184
-
185
- [More information needed]
186
-
187
- ## Additional Information
188
-
189
- ### Dataset Curators
190
-
191
- [More information needed]
192
-
193
- ### Licensing Information
194
-
195
- 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.
196
- ### Citation Information
197
-
198
- If you use any of the datasets, models or code modules, please cite the following paper:
199
- ```
200
- @inproceedings{Kumar2022IndicNLGSM,
201
- title={IndicNLG Suite: Multilingual Datasets for Diverse NLG Tasks in Indic Languages},
202
- 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},
203
- year={2022},
204
- url = "https://arxiv.org/abs/2203.05437",
205
- ```
206
-
207
-
208
- ### Contributions
209
-
210
- [Detailed in the paper](https://arxiv.org/abs/2203.05437)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/ml_IndicHeadlineGeneration_v1.0.zip → as/indic_headline_generation-test.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:1c371ca6a152238aa6419cb334e70f58d36cd31a1a7a12ef59909ada243fcaa6
3
- size 17015675
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1af337905d155f7524277119fe76c4abc094ffd905da690fcd8e22ebf5a143e8
3
+ size 18323389
data/or_IndicHeadlineGeneration_v1.0.zip → as/indic_headline_generation-train.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:39adee83c48aa6b1ae35695917e3dd97a1dc62eb9a926830235d43d9f1bb8eac
3
- size 49168625
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4875aa3b0bbef3fcb8cf18f047039c863f99c332223d195f9457c24a5bd0b6b8
3
+ size 36775058
data/as_IndicHeadlineGeneration_v1.0.zip → as/indic_headline_generation-validation.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:d585cdba81dfed1a02484f6a782a2e5af548f90de146bb446fcb457f854087af
3
- size 37833629
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d129fb087950ee2d086389765a0ab935c7b351153ba3eedda2caab2f5c5f34dd
3
+ size 18160777
data/pa_IndicHeadlineGeneration_v1.0.zip → bn/indic_headline_generation-test.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:acb2eb49ad32b396c236d126de4c0ffb6f05802542b011003d7571b64c28589b
3
- size 41648348
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6d7ea2becc5f9fa2f5ec199c180f2cce871718a84036c454fcce92e488435ec6
3
+ size 20471264
data/gu_IndicHeadlineGeneration_v1.0.zip → bn/indic_headline_generation-train.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ddab6ff96e45cf5c79376be5a7a8ccea2057f56b0edd3a1e67255dc59d1a7636
3
- size 203277173
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b90d48f3a57dbb93dd9a69773cca5c015d1330a3caf3ac060f8712f78d2a79e
3
+ size 160087956
bn/indic_headline_generation-validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa396b014f2872921b765c748fa019178f985d9421626332ce6484d06b3b9456
3
+ size 20558058
data/kn_IndicHeadlineGeneration_v1.0.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:d631bf61bae7c920ae5004bd978c8d21aa0866dc1f4f08ef33d548855660729c
3
- size 109260198
 
 
 
 
data/mr_IndicHeadlineGeneration_v1.0.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:ead44d900e70fd01d2ccb565957b6f704656d904227bfb0c077bc0315afd0812
3
- size 102826673
 
 
 
 
data/ta_IndicHeadlineGeneration_v1.0.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:2eefd55a4826ebd88a4faaff1ecff3b8e454bfd0742c2a34330bdd32e4d3aa77
3
- size 55879618
 
 
 
 
data/te_IndicHeadlineGeneration_v1.0.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:4d5a6104ce2ed7a83223c5fa6f4f713ee5d7af6cbfc36bb51ebf9dbf0ceeac5a
3
- size 21031900
 
 
 
 
gu/indic_headline_generation-test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd1f5c4eff0c9afdb171c7a4b4e5eedf2564d5ef6a692171de91aeb704b5944f
3
+ size 42325188
data/hi_IndicHeadlineGeneration_v1.0.zip → gu/indic_headline_generation-train-00000-of-00002.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e6226e2b4746b56e1a2b0d950a3f23e80bff580cc53ea3d401cc46a6dc38eec6
3
- size 302944077
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:80b518bee91fc88bf88d6eba2fe4c31a581583ce6d1e14f8473f94850b3fd087
3
+ size 196743609
gu/indic_headline_generation-train-00001-of-00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:23cf00fa70ce16bcbf43a2c97d3f2f90fccd7fe3284d269d0b84c6aec35a4788
3
+ size 76400648
gu/indic_headline_generation-validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d268d6d379d05892e392fce43624e839a26df84c07ff776b15db3d651dc02091
3
+ size 42760405
hi/indic_headline_generation-test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2506e0f736fceb2efce9464e46f1e167a9a9a0ab0c401a319b486d919b3750f
3
+ size 80816574
data/bn_IndicHeadlineGeneration_v1.0.zip → hi/indic_headline_generation-train-00000-of-00003.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4c3a8f68bdf44e6be1e43e21b25e179d721ca9e205d64e6a51d81f05ea9c2a0b
3
- size 117937492
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7e92ed042937d3adab308383fc8c75a30b0d8ae43b2624e11a488dd69992210
3
+ size 183852352
hi/indic_headline_generation-train-00001-of-00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b3c6895af43393516a98bc19577b459ba2bd18aa8e4075f4c34036387534a5b
3
+ size 184369018
hi/indic_headline_generation-train-00002-of-00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:108072929d7b005025948e8ff36fc2fce8e243215eb67579578d12c93c2f888c
3
+ size 11291160
hi/indic_headline_generation-validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08164c5a9e4b49167dcb9e9f4e6921fd050f097a16b35e3504219951df540898
3
+ size 80601950
kn/indic_headline_generation-test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f5064f2e829148452c6a74f618e796e10843013954f7eeb0683c125f5178a248
3
+ size 4315161
kn/indic_headline_generation-train-00000-of-00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:182fd3bcd5ae0839056e047237da64f7b06196a1b5337cb7920323e4b303b17b
3
+ size 170965225
kn/indic_headline_generation-train-00001-of-00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a8b4ba2b1628332a2d6870d7446145e2bb62ec025cc21628128bfb34931b9e6
3
+ size 4536641
kn/indic_headline_generation-validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e790b93d71fa5d588515d059ab016d43a773c4ee73fed1667cb734c75af4c32
3
+ size 25709757
ml/indic_headline_generation-test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8001fc78bc6cb020d34d178e0574e30108d6c0fc89e075a4b82325de420d196b
3
+ size 7793906
ml/indic_headline_generation-train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0864a1f56f628a2f169f33418b238b624777b6a74a4cccc198a5d3c7812013a7
3
+ size 15491499
ml/indic_headline_generation-validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc4bcfd8c3f38f2d51c5dad9e22c011a0084a7653b2cb14b92a22431dfa285f7
3
+ size 8013003
mr/indic_headline_generation-test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:92b2150494a247dc52d92f830402dc11f91e99119700cbdfe0f04b740cb29282
3
+ size 18653406
mr/indic_headline_generation-train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d333750a9cd67237c07c21dbb454bbefc0db96ceb9497108e865b3bbf855fcea
3
+ size 150436403
mr/indic_headline_generation-validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2835ccfbff26e2cc77a04d53099974adaa8ae09e928cead6b63825a6212599df
3
+ size 18225591
or/indic_headline_generation-test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6eea33f542c45208731cb28fe4d8dbaebee1722a38102fb91d01cb33a448a400
3
+ size 8705035
or/indic_headline_generation-train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2333dac0bf0e924fcfb1b9a6ee19247d51d53c3d9ad9c9ff7eb110e958ef9913
3
+ size 70976250
or/indic_headline_generation-validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb0cb829d67ba55c773a2b1636f734691b797abf0d0d470f58977e380d3d33d0
3
+ size 9121699
pa/indic_headline_generation-test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7200e9c747cb527cda2f25ab605959f07c4d0aed75f459903e97d355c05d4c3
3
+ size 7404582
pa/indic_headline_generation-train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:820b434d37862a47717fac752fb2fd5915b239c8ab87135bf77fca05e3406aa2
3
+ size 58720350
pa/indic_headline_generation-validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:176c48b0ba043f6b456d4e644b94b293fc40f7a4924fb7c29f0f6b47586799d1
3
+ size 7387148
ta/indic_headline_generation-test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38813221903704ec2947abdb3f582774af20b9f37c7eb75b560bb94887f618ff
3
+ size 11035084
ta/indic_headline_generation-train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8822294b80bb97241f360801347af01f7438ced2f9ed037b18ef785f0350cd5
3
+ size 87277430
ta/indic_headline_generation-validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:172c3c96f074f6dd2b4a98bb270302640ae1223ff771ba74dc7c3d84c4af885f
3
+ size 11000694
te/indic_headline_generation-test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:808d3870f4ffde2c7bca7daec906cd9547f17e6433a6ccc50f01f03c221351d6
3
+ size 3858811
te/indic_headline_generation-train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:717fb79e87538ea0b6cdbe7fea3d28e64e4a2e8355374bf466f7cd4b84e67fd8
3
+ size 30602430
te/indic_headline_generation-validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26a1f4dfdd7d8bf290dcb218317f59a211f76aaf64cf581d0b30d19704506849
3
+ size 3833278