Datasets:

Modalities:
Text
Formats:
parquet
Languages:
English
ArXiv:
Tags:
License:
system HF staff commited on
Commit
afd4b5d
1 Parent(s): d3c5093

Update files from the datasets library (from 1.3.0)

Browse files

Release notes: https://github.com/huggingface/datasets/releases/tag/1.3.0

Files changed (1) hide show
  1. README.md +163 -0
README.md ADDED
@@ -0,0 +1,163 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ ---
3
+
4
+ # Dataset Card for "com_qa"
5
+
6
+ ## Table of Contents
7
+ - [Dataset Description](#dataset-description)
8
+ - [Dataset Summary](#dataset-summary)
9
+ - [Supported Tasks](#supported-tasks)
10
+ - [Languages](#languages)
11
+ - [Dataset Structure](#dataset-structure)
12
+ - [Data Instances](#data-instances)
13
+ - [Data Fields](#data-fields)
14
+ - [Data Splits Sample Size](#data-splits-sample-size)
15
+ - [Dataset Creation](#dataset-creation)
16
+ - [Curation Rationale](#curation-rationale)
17
+ - [Source Data](#source-data)
18
+ - [Annotations](#annotations)
19
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
20
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
21
+ - [Social Impact of Dataset](#social-impact-of-dataset)
22
+ - [Discussion of Biases](#discussion-of-biases)
23
+ - [Other Known Limitations](#other-known-limitations)
24
+ - [Additional Information](#additional-information)
25
+ - [Dataset Curators](#dataset-curators)
26
+ - [Licensing Information](#licensing-information)
27
+ - [Citation Information](#citation-information)
28
+ - [Contributions](#contributions)
29
+
30
+ ## [Dataset Description](#dataset-description)
31
+
32
+ - **Homepage:** [http://qa.mpi-inf.mpg.de/comqa/](http://qa.mpi-inf.mpg.de/comqa/)
33
+ - **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
34
+ - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
35
+ - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
36
+ - **Size of downloaded dataset files:** 1.59 MB
37
+ - **Size of the generated dataset:** 1.05 MB
38
+ - **Total amount of disk used:** 2.65 MB
39
+
40
+ ### [Dataset Summary](#dataset-summary)
41
+
42
+ ComQA is a dataset of 11,214 questions, which were collected from WikiAnswers, a community question answering website.
43
+ By collecting questions from such a site we ensure that the information needs are ones of interest to actual users.
44
+ Moreover, questions posed there are often cannot be answered by commercial search engines or QA technology, making them
45
+ more interesting for driving future research compared to those collected from an engine's query log. The dataset contains
46
+ questions with various challenging phenomena such as the need for temporal reasoning, comparison (e.g., comparatives,
47
+ superlatives, ordinals), compositionality (multiple, possibly nested, subquestions with multiple entities), and
48
+ unanswerable questions (e.g., Who was the first human being on Mars?). Through a large crowdsourcing effort, questions
49
+ in ComQA are grouped into 4,834 paraphrase clusters that express the same information need. Each cluster is annotated
50
+ with its answer(s). ComQA answers come in the form of Wikipedia entities wherever possible. Wherever the answers are
51
+ temporal or measurable quantities, TIMEX3 and the International System of Units (SI) are used for normalization.
52
+
53
+ ### [Supported Tasks](#supported-tasks)
54
+
55
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
56
+
57
+ ### [Languages](#languages)
58
+
59
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
60
+
61
+ ## [Dataset Structure](#dataset-structure)
62
+
63
+ We show detailed information for up to 5 configurations of the dataset.
64
+
65
+ ### [Data Instances](#data-instances)
66
+
67
+ #### default
68
+
69
+ - **Size of downloaded dataset files:** 1.59 MB
70
+ - **Size of the generated dataset:** 1.05 MB
71
+ - **Total amount of disk used:** 2.65 MB
72
+
73
+ An example of 'validation' looks as follows.
74
+ ```
75
+ {
76
+ "answers": ["https://en.wikipedia.org/wiki/north_sea"],
77
+ "cluster_id": "cluster-922",
78
+ "questions": ["what sea separates the scandinavia peninsula from britain?", "which sea separates britain from scandinavia?"]
79
+ }
80
+ ```
81
+
82
+ ### [Data Fields](#data-fields)
83
+
84
+ The data fields are the same among all splits.
85
+
86
+ #### default
87
+ - `cluster_id`: a `string` feature.
88
+ - `questions`: a `list` of `string` features.
89
+ - `answers`: a `list` of `string` features.
90
+
91
+ ### [Data Splits Sample Size](#data-splits-sample-size)
92
+
93
+ | name |train|validation|test|
94
+ |-------|----:|---------:|---:|
95
+ |default| 3966| 966|2243|
96
+
97
+ ## [Dataset Creation](#dataset-creation)
98
+
99
+ ### [Curation Rationale](#curation-rationale)
100
+
101
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
102
+
103
+ ### [Source Data](#source-data)
104
+
105
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
106
+
107
+ ### [Annotations](#annotations)
108
+
109
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
110
+
111
+ ### [Personal and Sensitive Information](#personal-and-sensitive-information)
112
+
113
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
114
+
115
+ ## [Considerations for Using the Data](#considerations-for-using-the-data)
116
+
117
+ ### [Social Impact of Dataset](#social-impact-of-dataset)
118
+
119
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
120
+
121
+ ### [Discussion of Biases](#discussion-of-biases)
122
+
123
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
124
+
125
+ ### [Other Known Limitations](#other-known-limitations)
126
+
127
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
128
+
129
+ ## [Additional Information](#additional-information)
130
+
131
+ ### [Dataset Curators](#dataset-curators)
132
+
133
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
134
+
135
+ ### [Licensing Information](#licensing-information)
136
+
137
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
138
+
139
+ ### [Citation Information](#citation-information)
140
+
141
+ ```
142
+ @inproceedings{abujabal-etal-2019-comqa,
143
+ title = "{ComQA: A Community-sourced Dataset for Complex Factoid Question Answering with Paraphrase Clusters",
144
+ author = {Abujabal, Abdalghani and
145
+ Saha Roy, Rishiraj and
146
+ Yahya, Mohamed and
147
+ Weikum, Gerhard},
148
+ booktitle = {Proceedings of the 2019 Conference of the North {A}merican Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long and Short Papers)},
149
+ month = {jun},
150
+ year = {2019},
151
+ address = {Minneapolis, Minnesota},
152
+ publisher = {Association for Computational Linguistics},
153
+ url = {https://www.aclweb.org/anthology/N19-1027},
154
+ doi = {10.18653/v1/N19-1027{,
155
+ pages = {307--317},
156
+ }
157
+
158
+ ```
159
+
160
+
161
+ ### Contributions
162
+
163
+ Thanks to [@lewtun](https://github.com/lewtun), [@thomwolf](https://github.com/thomwolf), [@mariamabarham](https://github.com/mariamabarham), [@patrickvonplaten](https://github.com/patrickvonplaten), [@albertvillanova](https://github.com/albertvillanova) for adding this dataset.