Datasets:

Modalities:
Text
Languages:
Bengali
ArXiv:
Tags:
License:
abhik1505040 commited on
Commit
6b95e3f
1 Parent(s): b3c2c81

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +201 -0
README.md ADDED
@@ -0,0 +1,201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - machine-generated
4
+ language_creators:
5
+ - found
6
+ multilinguality:
7
+ - monolingual
8
+ size_categories:
9
+ - 100K<n<1M
10
+ source_datasets:
11
+ - extended
12
+ task_categories:
13
+ - conversational
14
+ - text-generation
15
+ - text2text-generation
16
+ language:
17
+ - bn
18
+ license:
19
+ - cc-by-nc-sa-4.0
20
+ ---
21
+
22
+ # Dataset Card for `dailydialogue_bn`
23
+
24
+ ## Table of Contents
25
+ - [Dataset Card for `dailydialogue_bn`](#dataset-card-for-dailydialogue_bn)
26
+ - [Table of Contents](#table-of-contents)
27
+ - [Dataset Description](#dataset-description)
28
+ - [Dataset Summary](#dataset-summary)
29
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
30
+ - [Languages](#languages)
31
+ - [Usage](#usage)
32
+ - [Dataset Structure](#dataset-structure)
33
+ - [Data Instances](#data-instances)
34
+ - [Data Fields](#data-fields)
35
+ - [Data Splits](#data-splits)
36
+ - [Dataset Creation](#dataset-creation)
37
+ - [Curation Rationale](#curation-rationale)
38
+ - [Source Data](#source-data)
39
+ - [Initial Data Collection and Normalization](#initial-data-collection-and-normalization)
40
+ - [Who are the source language producers?](#who-are-the-source-language-producers)
41
+ - [Annotations](#annotations)
42
+ - [Annotation process](#annotation-process)
43
+ - [Who are the annotators?](#who-are-the-annotators)
44
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
45
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
46
+ - [Social Impact of Dataset](#social-impact-of-dataset)
47
+ - [Discussion of Biases](#discussion-of-biases)
48
+ - [Other Known Limitations](#other-known-limitations)
49
+ - [Additional Information](#additional-information)
50
+ - [Dataset Curators](#dataset-curators)
51
+ - [Licensing Information](#licensing-information)
52
+ - [Citation Information](#citation-information)
53
+ - [Contributions](#contributions)
54
+
55
+ ## Dataset Description
56
+
57
+ - **Repository:** [https://github.com/csebuetnlp/BanglaNLG](https://github.com/csebuetnlp/BanglaNLG)
58
+ - **Paper:** [**"BanglaBERT: Combating Embedding Barrier in Multilingual Models for Low-Resource Language Understanding"**](https://arxiv.org/abs/2101.00204)
59
+ - **Point of Contact:** [Tahmid Hasan](mailto:tahmidhasan@cse.buet.ac.bd)
60
+
61
+ ### Dataset Summary
62
+
63
+ This is a Multi-turn dialogue dataset for Bengali, curated from the original English [DailyDialogue]() dataset and using the state-of-the-art English to Bengali translation model introduced **[here](https://aclanthology.org/2020.emnlp-main.207/).**
64
+
65
+
66
+ ### Supported Tasks and Leaderboards
67
+
68
+ [More information needed](https://github.com/csebuetnlp/BanglaNLG)
69
+
70
+ ### Languages
71
+
72
+ * `Bengali`
73
+
74
+ ### Usage
75
+ ```python
76
+ from datasets import load_dataset
77
+ dataset = load_dataset("csebuetnlp/dailydialogue_bn")
78
+ ```
79
+ ## Dataset Structure
80
+
81
+ ### Data Instances
82
+
83
+ One example from the dataset is given below in JSON format. Each element of the `dialogue` feature represents a single turn of the conversation.
84
+ ```
85
+ {
86
+ "id": "130",
87
+ "dialogue":
88
+ [
89
+ "তোমার জন্মদিনের জন্য তুমি কি করবে?",
90
+ "আমি আমার বন্ধুদের সাথে পিকনিক করতে চাই, মা।",
91
+ "বাড়িতে পার্টি হলে কেমন হয়? এভাবে আমরা একসাথে হয়ে উদযাপন করতে পারি।",
92
+ "ঠিক আছে, মা। আমি আমার বন্ধুদের বাড়িতে আমন্ত্রণ জানাবো।"
93
+ ]
94
+ }
95
+ ```
96
+
97
+ ### Data Fields
98
+
99
+ The data fields are as follows:
100
+
101
+ - `id`: a `string` feature.
102
+ - `dialogue`: a List of `string` feature.
103
+
104
+
105
+ ### Data Splits
106
+ | split |count |
107
+ |----------|--------|
108
+ |`train`| 127771 |
109
+ |`validation`| 2502 |
110
+ |`test`| 2504 |
111
+
112
+
113
+
114
+
115
+ ## Dataset Creation
116
+
117
+ For the training set, we translated the complete [DailyDialogue](https://aclanthology.org/N18-1101/) dataset using the English to Bangla translation model introduced [here](https://aclanthology.org/2020.emnlp-main.207/). Due to the possibility of incursions of error during automatic translation, we used the [Language-Agnostic BERT Sentence Embeddings (LaBSE)](https://arxiv.org/abs/2007.01852) of the translations and original sentences to compute their similarity. A datapoint was accepted if all of its constituent sentences had a similarity score over 0.7.
118
+
119
+ ### Curation Rationale
120
+
121
+ [More information needed](https://github.com/csebuetnlp/BanglaNLG)
122
+
123
+ ### Source Data
124
+
125
+ [DailyDialogue](https://arxiv.org/abs/1606.05250)
126
+
127
+ #### Initial Data Collection and Normalization
128
+
129
+ [More information needed](https://github.com/csebuetnlp/BanglaNLG)
130
+
131
+
132
+ #### Who are the source language producers?
133
+
134
+ [More information needed](https://github.com/csebuetnlp/BanglaNLG)
135
+
136
+
137
+ ### Annotations
138
+
139
+ [More information needed](https://github.com/csebuetnlp/BanglaNLG)
140
+
141
+
142
+ #### Annotation process
143
+
144
+ [More information needed](https://github.com/csebuetnlp/BanglaNLG)
145
+
146
+ #### Who are the annotators?
147
+
148
+ [More information needed](https://github.com/csebuetnlp/BanglaNLG)
149
+
150
+ ### Personal and Sensitive Information
151
+
152
+ [More information needed](https://github.com/csebuetnlp/BanglaNLG)
153
+
154
+ ## Considerations for Using the Data
155
+
156
+ ### Social Impact of Dataset
157
+
158
+ [More information needed](https://github.com/csebuetnlp/BanglaNLG)
159
+
160
+ ### Discussion of Biases
161
+
162
+ [More information needed](https://github.com/csebuetnlp/BanglaNLG)
163
+
164
+ ### Other Known Limitations
165
+
166
+ [More information needed](https://github.com/csebuetnlp/BanglaNLG)
167
+
168
+ ## Additional Information
169
+
170
+ ### Dataset Curators
171
+
172
+ [More information needed](https://github.com/csebuetnlp/BanglaNLG)
173
+
174
+ ### Licensing Information
175
+
176
+ Contents of this repository are restricted to only non-commercial research purposes under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0)](https://creativecommons.org/licenses/by-nc-sa/4.0/). Copyright of the dataset contents belongs to the original copyright holders.
177
+ ### Citation Information
178
+
179
+ If you use the dataset, please cite the following paper:
180
+ ```
181
+ @inproceedings{bhattacharjee-etal-2023-banglanlg,
182
+ title = "{B}angla{NLG} and {B}angla{T}5: Benchmarks and Resources for Evaluating Low-Resource Natural Language Generation in {B}angla",
183
+ author = "Bhattacharjee, Abhik and
184
+ Hasan, Tahmid and
185
+ Ahmad, Wasi Uddin and
186
+ Shahriyar, Rifat",
187
+ booktitle = "Findings of the Association for Computational Linguistics: EACL 2023",
188
+ month = may,
189
+ year = "2023",
190
+ address = "Dubrovnik, Croatia",
191
+ publisher = "Association for Computational Linguistics",
192
+ url = "https://aclanthology.org/2023.findings-eacl.54",
193
+ pages = "726--735",
194
+ abstract = "This work presents {`}BanglaNLG,{'} a comprehensive benchmark for evaluating natural language generation (NLG) models in Bangla, a widely spoken yet low-resource language. We aggregate six challenging conditional text generation tasks under the BanglaNLG benchmark, introducing a new dataset on dialogue generation in the process. Furthermore, using a clean corpus of 27.5 GB of Bangla data, we pretrain {`}BanglaT5{'}, a sequence-to-sequence Transformer language model for Bangla. BanglaT5 achieves state-of-the-art performance in all of these tasks, outperforming several multilingual models by up to 9{\%} absolute gain and 32{\%} relative gain. We are making the new dialogue dataset and the BanglaT5 model publicly available at https://github.com/csebuetnlp/BanglaNLG in the hope of advancing future research on Bangla NLG.",
195
+ }
196
+ ```
197
+
198
+
199
+ ### Contributions
200
+
201
+ Thanks to [@abhik1505040](https://github.com/abhik1505040) and [@Tahmid](https://github.com/Tahmid04) for adding this dataset.