shreysatapara commited on
Commit
e96a560
1 Parent(s): db96d66

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +135 -1
README.md CHANGED
@@ -38,4 +38,138 @@ configs:
38
  size_categories:
39
  - 1K<n<10K
40
  - 10K<n<100K
41
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  size_categories:
39
  - 1K<n<10K
40
  - 10K<n<100K
41
+ ---
42
+
43
+ # Dataset Card for "ILSUM-2.0"
44
+
45
+ ### Dataset Summary
46
+
47
+ ILSUM-2.0 contains additional ~10K articles along with ILSUM-1.0 dataset. Along with Hindi, English, and Gujarati, which were part of ILSUM-1.0, Bengali is also introduced as part of ILSUM-20. dataset.
48
+
49
+ The dataset for this task is built using articles and headline pairs from several leading newspapers of the country. We provide >=10,000 news articles for each language. The task is to generate a meaningful fixed length summary, either extractive or abstractive, for each article. While several previous works in other languages use news artciles - headlines pair, the current dataset poses a unique challenge of code-mixing and script mixing. It is very common for news articles to borrow phrases from english, even if the article itself is written in an Indian Language.
50
+
51
+ Examples like these are a common occurence both in the headlines as well as in the articles.
52
+ ~~~
53
+ - "IND vs SA, 5મી T20 તસવીરોમાં: વરસાદે વિલન બની મજા બગાડી" (India vs SA, 5th T20 in pictures: rain spoils the match)
54
+ - "LIC के IPO में पैसा लगाने वालों का टूटा दिल, आई एक और नुकसानदेह खबर" (Investors of LIC IPO left broken hearted, yet another bad news).
55
+ ~~~
56
+ ### Languages
57
+ - Hindi
58
+ - Gujarati
59
+ - Bengali
60
+ - English
61
+
62
+ ### Data Fields
63
+ ~~~
64
+ - id: Unique id of each datapoint
65
+ - Article: Entire News article
66
+ - Headline: Headline of News Article
67
+ - Summary: Summary of News Article
68
+ ~~~
69
+
70
+ ### Data Splits
71
+ Data for all four languages is divided into two splits train and test.
72
+
73
+ ### Load dataset using hf-dataset class
74
+ ```python
75
+ from datasets import load_dataset
76
+
77
+ dataset = load_dataset("ILSUM/ILSUM-2.0", "Hindi")
78
+ # you can use any of the following config names as a second argument:
79
+ # "English", "Hindi", "Gujarati", Bengali
80
+
81
+ ```
82
+
83
+ ### Citation Information
84
+ If you are using the dataset or the models please cite the following paper
85
+ ~~~
86
+ @article{satapara2023findings,
87
+ title={Key Takeaways from the Second Shared Task on Indian Language Summarization (ILSUM 2023).},
88
+ author={Satapara, Shrey and Mehta, Parth and Modha, Sandip and Ganguly, Debasis},
89
+ journal={Working Notes of FIRE},
90
+ pages={724-733},
91
+ year={2023}
92
+ }
93
+ ~~~
94
+
95
+
96
+ ### Contributions
97
+ - Shrey Satapara, Indian Institute Of Technology, Hyderabad, India
98
+ - Sandip Modha, LDRP-ITR, Gandhinagar, India
99
+ - Parth Mehta, Parmonic, USA
100
+ - Debasis Ganguly, University Of Glasgow, UK
101
+ <!--## Dataset Description
102
+
103
+ - **Homepage:**
104
+ - **Repository:**
105
+ - **Paper:**
106
+ - **Leaderboard:**
107
+ - **Point of Contact:**
108
+
109
+
110
+
111
+ ### Supported Tasks and Leaderboards
112
+
113
+ [More Information Needed]
114
+
115
+
116
+
117
+ ## Dataset Structure
118
+
119
+ ### Data Instances
120
+
121
+ [More Information Needed]
122
+
123
+
124
+
125
+
126
+
127
+ [More Information Needed]
128
+
129
+ ### Source Data
130
+
131
+ #### Initial Data Collection and Normalization
132
+
133
+ [More Information Needed]
134
+
135
+ #### Who are the source language producers?
136
+
137
+ [More Information Needed]
138
+
139
+ ### Annotations
140
+
141
+ #### Annotation process
142
+
143
+ [More Information Needed]
144
+
145
+ #### Who are the annotators?
146
+
147
+ [More Information Needed]
148
+
149
+ ### Personal and Sensitive Information
150
+
151
+ [More Information Needed]
152
+
153
+ ## Considerations for Using the Data
154
+
155
+ ### Social Impact of Dataset
156
+
157
+ [More Information Needed]
158
+
159
+ ### Discussion of Biases
160
+
161
+ [More Information Needed]
162
+
163
+ ### Other Known Limitations
164
+
165
+ [More Information Needed]
166
+
167
+ ## Additional Information
168
+
169
+ ### Dataset Curators
170
+
171
+ [More Information Needed]
172
+
173
+ ### Licensing Information
174
+
175
+ [More Information Needed]