LLukas22 commited on
Commit
23ce608
1 Parent(s): a3bd80f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -22
README.md CHANGED
@@ -10,7 +10,6 @@ multilinguality:
10
  - monolingual
11
  task_ids:
12
  - extractive-qa
13
- paperswithcode_id: nlquad-a-non-factoid-long-question-answering
14
  dataset_info:
15
  features:
16
  - name: title
@@ -64,8 +63,8 @@ dataset_info:
64
 
65
  ## Dataset Description
66
 
67
- - **Repository: [Github](https://github.com/ASoleimaniB/NLQuAD)**
68
- - **Paper:[NLQuAD: A Non-Factoid Long Question Answering Data Set](https://aclanthology.org/2021.eacl-main.106/)**
69
 
70
  ### Dataset Summary
71
 
@@ -85,16 +84,39 @@ We automatically extract target answers because annotating for non-factoid long
85
  #### plain_text
86
  An example of 'train' looks as follows.
87
 
88
- ```
89
  {
90
- "answers": {
91
- "answer_start": [1],
92
- "text": ["This is a test text"]
93
- },
94
- "context": "This is a test context.",
95
- "id": "1",
96
- "question": "Is this a test?",
97
- "title": "train test"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  }
99
  ```
100
 
@@ -103,20 +125,23 @@ An example of 'train' looks as follows.
103
  The data fields are the same among all splits.
104
 
105
  #### plain_text
106
- - `id`: a `string` feature.
107
  - `title`: a `string` feature.
108
- - `context`: a `string` feature.
109
- - `question`: a `string` feature.
110
- - `answers`: a dictionary feature containing:
111
- - `text`: a `string` feature.
112
- - `answer_start`: a `int32` feature.
113
-
114
-
 
 
 
 
115
  ### Data Splits
116
 
117
  | name |train|test|validation|
118
  |----------|----:|----:|---------:|
119
- |plain_text|87599|10570| 10570|
120
 
121
 
122
  ## Additional Information
@@ -127,7 +152,8 @@ This dataset is distributed under the [CC BY-NC](https://creativecommons.org/lic
127
 
128
  ### Citation Information
129
 
130
- BibTeX:```json
 
131
  @inproceedings{soleimani-etal-2021-nlquad,
132
  title = "{NLQ}u{AD}: A Non-Factoid Long Question Answering Data Set",
133
  author = "Soleimani, Amir and
 
10
  - monolingual
11
  task_ids:
12
  - extractive-qa
 
13
  dataset_info:
14
  features:
15
  - name: title
 
63
 
64
  ## Dataset Description
65
 
66
+ - **Repository: [https://github.com/ASoleimaniB/NLQuAD](https://github.com/ASoleimaniB/NLQuAD)**
67
+ - **Paper:[https://aclanthology.org/2021.eacl-main.106/](https://aclanthology.org/2021.eacl-main.106/)**
68
 
69
  ### Dataset Summary
70
 
 
84
  #### plain_text
85
  An example of 'train' looks as follows.
86
 
87
+ ```json
88
  {
89
+ "title": "Khashoggi murder: Body 'dissolved in acid'",
90
+ "date": "2 November 2018",
91
+ "paragraphs":[
92
+ {
93
+ "context": "A top Turkish official, presidential adviser Yasin Aktay, has said ....",
94
+ "qas":[
95
+ {
96
+ "question":"What was said in the crown prince's alleged phone call?",
97
+ "id":"0_0",
98
+ "answers":[
99
+ {
100
+ "text":"During the call with President Donald Trump\'s son-in-law Jared Kushner and national ....",
101
+ "answer_start":1352,
102
+ "answer_end": 2108,
103
+ }
104
+ ]
105
+ },
106
+ {
107
+ "question":'What has the investigation found so far?',
108
+ "id":"0_1",
109
+ "answers":[
110
+ {
111
+ "text":"There is still no consensus on how Khashoggi died. He entered ....",
112
+ "answer_start":2109,
113
+ "answer_end": 3128,
114
+ }
115
+ ]
116
+ },
117
+ ]
118
+ }
119
+ ]
120
  }
121
  ```
122
 
 
125
  The data fields are the same among all splits.
126
 
127
  #### plain_text
 
128
  - `title`: a `string` feature.
129
+ - `date`: a `string` feature.
130
+ - `paragraphs`: a list feature containing dictionaries:
131
+ - `context`: a `string` feature.
132
+ - `qas`: a list feature containing dictionaries:
133
+ - `question`: a `string` feature.
134
+ - `id`: a `string` feature.
135
+ - `answers`: a list feature containing dictionaries:
136
+ - `text`: a `string` feature.
137
+ - `answer_start`: a `int32` feature.
138
+ - `answer_end`: a `int32` feature
139
+ -
140
  ### Data Splits
141
 
142
  | name |train|test|validation|
143
  |----------|----:|----:|---------:|
144
+ |plain_text|10259| 1280| 1280|
145
 
146
 
147
  ## Additional Information
 
152
 
153
  ### Citation Information
154
 
155
+ BibTeX:
156
+ ```json
157
  @inproceedings{soleimani-etal-2021-nlquad,
158
  title = "{NLQ}u{AD}: A Non-Factoid Long Question Answering Data Set",
159
  author = "Soleimani, Amir and