muhammadravi251001 commited on
Commit
3e362c0
·
verified ·
1 Parent(s): 70f3ef2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +162 -1
README.md CHANGED
@@ -1,3 +1,164 @@
1
  ---
2
- license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - machine-generated
4
+ - manual-partial-validation
5
+ language_creators:
6
+ - expert-generated
7
+ language:
8
+ - id
9
+ license: unknown
10
+ multilinguality:
11
+ - monolingual
12
+ size_categories:
13
+ - 10K<n<100K
14
+ source_datasets:
15
+ - IDK-MRC
16
+ task_categories:
17
+ - text-classification
18
+ task_ids:
19
+ - natural-language-inference
20
+ pretty_name: IDK-MRC-NLI
21
+ dataset_info:
22
+ features:
23
+ - name: premise
24
+ dtype: string
25
+ - name: hypothesis
26
+ dtype: string
27
+ - name: label
28
+ dtype:
29
+ class_label:
30
+ names:
31
+ '0': entailment
32
+ '1': neutral
33
+ '2': contradiction
34
+ config_name: idkmrc-nli
35
+ splits:
36
+ - name: train
37
+ num_bytes: 5916125
38
+ num_examples: 18665
39
+ - name: validation
40
+ num_bytes: 473125
41
+ num_examples: 1529
42
+ - name: test
43
+ num_bytes: 521375
44
+ num_examples: 1689
45
+ download_size: 6910625
46
+ dataset_size: 21883
47
  ---
48
+
49
+ # Dataset Card for IDK-MRC-NLI
50
+
51
+ ## Table of Contents
52
+ - [Dataset Description](#dataset-description)
53
+ - [Dataset Summary](#dataset-summary)
54
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
55
+ - [Languages](#languages)
56
+ - [Dataset Structure](#dataset-structure)
57
+ - [Data Instances](#data-instances)
58
+ - [Data Fields](#data-fields)
59
+ - [Data Splits](#data-splits)
60
+ - [Dataset Creation](#dataset-creation)
61
+ - [Curation Rationale](#curation-rationale)
62
+ - [Source Data](#source-data)
63
+ - [Annotations](#annotations)
64
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
65
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
66
+ - [Social Impact of Dataset](#social-impact-of-dataset)
67
+ - [Discussion of Biases](#discussion-of-biases)
68
+ - [Other Known Limitations](#other-known-limitations)
69
+ - [Additional Information](#additional-information)
70
+ - [Dataset Curators](#dataset-curators)
71
+ - [Licensing Information](#licensing-information)
72
+ - [Citation Information](#citation-information)
73
+ - [Contributions](#contributions)
74
+
75
+ ## Dataset Description
76
+
77
+ - **Repository:** [Hugging Face](https://huggingface.co/datasets/muhammadravi251001/idkmrc-nli)
78
+ - **Point of Contact:** [Hugging Face](https://huggingface.co/datasets/muhammadravi251001/idkmrc-nli)
79
+ - **Experiment:** [Github](https://github.com/muhammadravi251001/multilingual-qas-with-nli)
80
+
81
+ ### Dataset Summary
82
+
83
+ The IDKMRC-NLI dataset is derived from the IDKMRC question answering dataset, utilizing named entity recognition (NER), chunking tags, Regex, and embedding similarity techniques to determine its contradiction sets.
84
+ Collected through this process, the dataset comprises various columns beyond premise, hypothesis, and label, including properties aligned with NER and chunking tags.
85
+ This dataset is designed to facilitate Natural Language Inference (NLI) tasks and contains information extracted from diverse sources to provide comprehensive coverage.
86
+ Each data instance encapsulates premise, hypothesis, label, and additional properties pertinent to NLI evaluation.
87
+
88
+ ### Supported Tasks and Leaderboards
89
+
90
+ - Natural Language Inference for Indonesian
91
+
92
+ ### Languages
93
+
94
+ Indonesian
95
+
96
+ ## Dataset Structure
97
+
98
+ ### Data Instances
99
+
100
+ An example of `test` looks as follows.
101
+
102
+ ```
103
+ {
104
+ "premise": "Karangkancana adalah sebuah kecamatan di Kabupaten Kuningan, Provinsi Jawa Barat, Indonesia.",
105
+ "hypothesis": "Dimanakah letak Desa Karang kancana? Kabupaten Kuningan, Provinsi Jawa Barat, Indonesia.",
106
+ "label": 0
107
+ }
108
+ ```
109
+ ### Data Fields
110
+
111
+ The data fields are:
112
+ - `premise`: a `string` feature
113
+ - `hypothesis`: a `string` feature
114
+ - `label`: a classification label, with possible values including `entailment` (0), `neutral` (1), `contradiction` (2).
115
+
116
+ ### Data Splits #TODO
117
+
118
+ The data is split across `train`, `valid`, and `test`.
119
+
120
+ | split | # examples |
121
+ |----------|-------:|
122
+ |train| 18665|
123
+ |valid| 1529|
124
+ |test| 1689|
125
+
126
+ ## Dataset Creation
127
+
128
+ ### Curation Rationale
129
+
130
+ Indonesian NLP is considered under-resourced. We need NLI dataset to fine-tuning the NLI model to utilizing them for QA models in order to improving the performance of the QA's.
131
+
132
+ ### Source Data
133
+
134
+ #### Initial Data Collection and Normalization
135
+
136
+ We collect the data from the prominent QA dataset in Indonesian. The annotation fully by the original dataset's researcher.
137
+
138
+ #### Who are the source language producers?
139
+
140
+ This synthetic data was produced by machine, but the original data was produced by human.
141
+
142
+ ### Personal and Sensitive Information
143
+
144
+ There might be some personal information coming from Wikipedia and news, especially the information of famous/important people.
145
+
146
+ ## Considerations for Using the Data
147
+
148
+ ### Discussion of Biases
149
+
150
+ The QA dataset (so the NLI-derived from them) is created using premise sentences taken from Wikipedia and news. These data sources may contain some bias.
151
+
152
+ ### Other Known Limitations
153
+
154
+ No other known limitations
155
+
156
+ ## Additional Information
157
+
158
+ ### Dataset Curators
159
+
160
+ This dataset is the result of the collaborative work of Indonesian researchers from the University of Indonesia, Mohamed bin Zayed University of Artificial Intelligence, and the Korea Advanced Institute of Science & Technology.
161
+
162
+ ### Licensing Information
163
+
164
+ The license is Unknown. Please contact authors for any information on the dataset.