Datasets:

Languages:
English
Multilinguality:
monolingual
Size Categories:
1K<n<10K
Language Creators:
expert-generated
Annotations Creators:
crowdsourced
Source Datasets:
extended|ambig_qa
ArXiv:
License:
din0s commited on
Commit
5252f82
1 Parent(s): 0877395

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +135 -0
README.md ADDED
@@ -0,0 +1,135 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - crowdsourced
4
+ language:
5
+ - en
6
+ language_creators:
7
+ - expert-generated
8
+ license:
9
+ - apache-2.0
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: ASQA
13
+ size_categories:
14
+ - 1K<n<10K
15
+ source_datasets:
16
+ - extended|ambig_qa
17
+ tags:
18
+ - factoid questions
19
+ - long-form answers
20
+ task_categories:
21
+ - question-answering
22
+ task_ids:
23
+ - open-domain-qa
24
+ ---
25
+
26
+ # Dataset Card for ASQA
27
+
28
+ ## Table of Contents
29
+ - [Table of Contents](#table-of-contents)
30
+ - [Dataset Description](#dataset-description)
31
+ - [Dataset Summary](#dataset-summary)
32
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
33
+ - [Languages](#languages)
34
+ - [Dataset Structure](#dataset-structure)
35
+ - [Data Instances](#data-instances)
36
+ - [Data Fields](#data-fields)
37
+ - [Data Splits](#data-splits)
38
+ - [Additional Information](#additional-information)
39
+ - [Contributions](#contributions)
40
+
41
+ ## Dataset Description
42
+
43
+ - **Repository:** https://github.com/google-research/language/tree/master/language/asqa
44
+ - **Paper:** https://arxiv.org/abs/2204.06092
45
+ - **Leaderboard:** https://ambigqa.github.io/asqa_leaderboard.html
46
+
47
+ ### Dataset Summary
48
+
49
+ ASQA is the first long-form question answering dataset that focuses on ambiguous factoid questions. Different from previous long-form answers datasets, each question is annotated with both long-form answers and extractive question-answer pairs, which should be answerable by the generated passage. A generated long-form answer will be evaluated using both ROUGE and QA accuracy. In the paper, we show that these evaluation metrics are well-correlated with human judgments.
50
+
51
+ ### Supported Tasks and Leaderboards
52
+
53
+ Long-form Question Answering. [Leaderboard](https://ambigqa.github.io/asqa_leaderboard.html)
54
+
55
+
56
+ ### Languages
57
+
58
+ - English
59
+
60
+ ## Dataset Structure
61
+
62
+ ### Data Instances
63
+
64
+ ```py
65
+ {
66
+ "ambiguous_question": "Where does the civil liberties act place the blame for the internment of u.s. citizens?",
67
+ "qa_pairs": [
68
+ {
69
+ "context": "No context provided",
70
+ "question": "Where does the civil liberties act place the blame for the internment of u.s. citizens by apologizing on behalf of them?",
71
+ "short_answers": [
72
+ "the people of the United States"
73
+ ],
74
+ "wikipage": None
75
+ },
76
+ {
77
+ "context": "No context provided",
78
+ "question": "Where does the civil liberties act place the blame for the internment of u.s. citizens by making them pay reparations?",
79
+ "short_answers": [
80
+ "United States government"
81
+ ],
82
+ "wikipage": None
83
+ }
84
+ ],
85
+ "wikipages": [
86
+ {
87
+ "title": "Civil Liberties Act of 1988",
88
+ "url": "https://en.wikipedia.org/wiki/Civil%20Liberties%20Act%20of%201988"
89
+ }
90
+ ],
91
+ "annotations": [
92
+ {
93
+ "knowledge": [
94
+ {
95
+ "content": "The Civil Liberties Act of 1988 (Pub.L. 100–383, title I, August 10, 1988, 102 Stat. 904, 50a U.S.C. § 1989b et seq.) is a United States federal law that granted reparations to Japanese Americans who had been interned by the United States government during World War II.",
96
+ "wikipage": "Civil Liberties Act of 1988"
97
+ }
98
+ ],
99
+ "long_answer": "The Civil Liberties Act of 1988 is a United States federal law that granted reparations to Japanese Americans who had been interned by the United States government during World War II. In the act, the blame for the internment of U.S. citizens was placed on the people of the United States, by apologizing on behalf of them. Furthermore, the blame for the internment was placed on the United States government, by making them pay reparations."
100
+ }
101
+ ],
102
+ "sample_id": -4557617869928758000
103
+ }
104
+ ```
105
+
106
+ ### Data Fields
107
+
108
+ - `ambiguous_question`: ambiguous question from AmbigQA.
109
+ - `annotations`: long-form answers to the ambiguous question constructed by ASQA annotators.
110
+ - `annotations/knowledge`: list of additional knowledge pieces.
111
+ - `annotations/knowledge/content`: a passage from Wikipedia.
112
+ - `annotations/knowledge/wikipage`: title of the Wikipedia page the passage was taken from.
113
+ - `annotations/long_answer`: annotation.
114
+ - `qa_pairs`: Q&A pairs from AmbigQA which are used for disambiguation.
115
+ - `qa_pairs/context`: additional context provided.
116
+ - `qa_pairs/question`: disambiguated question from AmbigQA.
117
+ - `qa_pairs/short_answers`: list of short answers from AmbigQA.
118
+ - `qa_pairs/wikipage`: title of the Wikipedia page the additional context was taken from.
119
+ - `sample_id`: the unique id of the sample
120
+ - `wikipages`: list of Wikipedia pages visited by AmbigQA annotators.
121
+ - `wikipages/title`: title of the Wikipedia page.
122
+ - `wikipages/url`: link to the Wikipedia page.
123
+
124
+ ### Data Splits
125
+
126
+ | **Split** | **Instances** |
127
+ |-----------|---------------|
128
+ | Train | 4353 |
129
+ | Dev | 948 |
130
+
131
+ ## Additional Information
132
+
133
+ ### Contributions
134
+
135
+ Thanks to [@din0s](https://github.com/din0s) for adding this dataset.