fedryanto commited on
Commit
bf51d47
·
1 Parent(s): 70818ff

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +200 -0
README.md ADDED
@@ -0,0 +1,200 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: SQuAD-UNIB
3
+ annotations_creators:
4
+ - crowdsourced
5
+ language_creators:
6
+ - crowdsourced
7
+ - found
8
+ language:
9
+ - en
10
+ license:
11
+ - cc-by-4.0
12
+ multilinguality:
13
+ - monolingual
14
+ size_categories:
15
+ - 1K<n<10K
16
+ source_datasets:
17
+ - extended|wikipedia
18
+ task_categories:
19
+ - question-answering
20
+ task_ids:
21
+ - extractive-qa
22
+ paperswithcode_id: squad-unib
23
+ train-eval-index:
24
+ - config: plain_text
25
+ task: question-answering
26
+ task_id: extractive_question_answering
27
+ splits:
28
+ train_split: train
29
+ eval_split: validation
30
+ col_mapping:
31
+ question: question
32
+ context: context
33
+ answers:
34
+ text: text
35
+ answer_start: answer_start
36
+ metrics:
37
+ - type: squad
38
+ name: SQuAD
39
+ dataset_info:
40
+ features:
41
+ - name: id
42
+ dtype: string
43
+ - name: title
44
+ dtype: string
45
+ - name: context
46
+ dtype: string
47
+ - name: question
48
+ dtype: string
49
+ - name: answers
50
+ sequence:
51
+ - name: text
52
+ dtype: string
53
+ - name: answer_start
54
+ dtype: int32
55
+ config_name: plain_text
56
+ ---
57
+
58
+ # Dataset Card for [Squad-UNIB]
59
+
60
+ ## Table of Contents
61
+ - [Table of Contents](#table-of-contents)
62
+ - [Dataset Description](#dataset-description)
63
+ - [Dataset Summary](#dataset-summary)
64
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
65
+ - [Languages](#languages)
66
+ - [Dataset Structure](#dataset-structure)
67
+ - [Data Instances](#data-instances)
68
+ - [Data Fields](#data-fields)
69
+ - [Data Splits](#data-splits)
70
+ - [Dataset Creation](#dataset-creation)
71
+ - [Curation Rationale](#curation-rationale)
72
+ - [Source Data](#source-data)
73
+ - [Annotations](#annotations)
74
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
75
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
76
+ - [Social Impact of Dataset](#social-impact-of-dataset)
77
+ - [Discussion of Biases](#discussion-of-biases)
78
+ - [Other Known Limitations](#other-known-limitations)
79
+ - [Additional Information](#additional-information)
80
+ - [Dataset Curators](#dataset-curators)
81
+ - [Licensing Information](#licensing-information)
82
+ - [Citation Information](#citation-information)
83
+ - [Contributions](#contributions)
84
+
85
+ ## Dataset Description
86
+
87
+ - **Homepage:**
88
+ - **Repository:**
89
+ - **Paper:**
90
+ - **Leaderboard:**
91
+ - **Point of Contact:**
92
+
93
+ ### Dataset Summary
94
+
95
+ This dataset create by own colecting for NLP task individual
96
+
97
+ ### Supported Tasks and Leaderboards
98
+
99
+ [More Information Needed]
100
+
101
+ ### Languages
102
+
103
+ [More Information Needed]
104
+
105
+ ## Dataset Structure
106
+
107
+ ### Data Instances
108
+
109
+ An example of 'train' looks as follows.
110
+ ```
111
+ {
112
+ "answers": {
113
+ "answer_start": [1],
114
+ "text": ["This is a test text"]
115
+ },
116
+ "context": "This is a test context.",
117
+ "id": "1",
118
+ "question": "Is this a test?",
119
+ "title": "train test"
120
+ }
121
+ ```
122
+
123
+ ### Data Fields
124
+
125
+ The data fields are the same among all splits.
126
+
127
+ #### plain_text
128
+ - `id`: a `string` feature.
129
+ - `title`: a `string` feature.
130
+ - `context`: a `string` feature.
131
+ - `question`: a `string` feature.
132
+ - `answers`: a dictionary feature containing:
133
+ - `text`: a `string` feature.
134
+ - `answer_start`: a `int32` feature.
135
+
136
+ ### Data Splits
137
+
138
+ [More Information Needed]
139
+
140
+ ## Dataset Creation
141
+
142
+ ### Curation Rationale
143
+
144
+ [More Information Needed]
145
+
146
+ ### Source Data
147
+
148
+ #### Initial Data Collection and Normalization
149
+
150
+ [More Information Needed]
151
+
152
+ #### Who are the source language producers?
153
+
154
+ [More Information Needed]
155
+
156
+ ### Annotations
157
+
158
+ #### Annotation process
159
+
160
+ [More Information Needed]
161
+
162
+ #### Who are the annotators?
163
+
164
+ [More Information Needed]
165
+
166
+ ### Personal and Sensitive Information
167
+
168
+ [More Information Needed]
169
+
170
+ ## Considerations for Using the Data
171
+
172
+ ### Social Impact of Dataset
173
+
174
+ [More Information Needed]
175
+
176
+ ### Discussion of Biases
177
+
178
+ [More Information Needed]
179
+
180
+ ### Other Known Limitations
181
+
182
+ [More Information Needed]
183
+
184
+ ## Additional Information
185
+
186
+ ### Dataset Curators
187
+
188
+ [More Information Needed]
189
+
190
+ ### Licensing Information
191
+
192
+ [More Information Needed]
193
+
194
+ ### Citation Information
195
+
196
+ [More Information Needed]
197
+
198
+ ### Contributions
199
+
200
+ Thanks to [@github-username](https://github.com/<github-username>) for adding this dataset.