Datasets:

Languages:
English
Multilinguality:
monolingual
Size Categories:
10K<n<100K
Language Creators:
found
Annotations Creators:
crowdsourced
Source Datasets:
original
Tags:
knowledge-base-qa
License:
system HF staff commited on
Commit
8df2e5e
1 Parent(s): df93623

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 +161 -0
README.md ADDED
@@ -0,0 +1,161 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ ---
3
+
4
+ # Dataset Card for "lc_quad"
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://lc-quad.sda.tech/](http://lc-quad.sda.tech/)
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:** 3.69 MB
37
+ - **Size of the generated dataset:** 19.77 MB
38
+ - **Total amount of disk used:** 23.46 MB
39
+
40
+ ### [Dataset Summary](#dataset-summary)
41
+
42
+ LC-QuAD 2.0 is a Large Question Answering dataset with 30,000 pairs of question and its corresponding SPARQL query. The target knowledge base is Wikidata and DBpedia, specifically the 2018 version. Please see our paper for details about the dataset creation process and framework.
43
+
44
+ ### [Supported Tasks](#supported-tasks)
45
+
46
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
47
+
48
+ ### [Languages](#languages)
49
+
50
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
51
+
52
+ ## [Dataset Structure](#dataset-structure)
53
+
54
+ We show detailed information for up to 5 configurations of the dataset.
55
+
56
+ ### [Data Instances](#data-instances)
57
+
58
+ #### default
59
+
60
+ - **Size of downloaded dataset files:** 3.69 MB
61
+ - **Size of the generated dataset:** 19.77 MB
62
+ - **Total amount of disk used:** 23.46 MB
63
+
64
+ An example of 'train' looks as follows.
65
+ ```
66
+ This example was too long and was cropped:
67
+
68
+ {
69
+ "NNQT_question": "What is the {periodical literature} for {mouthpiece} of {Delta Air Lines}",
70
+ "paraphrased_question": "What is Delta Air Line's periodical literature mouthpiece?",
71
+ "question": "What periodical literature does Delta Air Lines use as a moutpiece?",
72
+ "sparql_dbpedia18": "\"select distinct ?obj where { ?statement <http://www.w3.org/1999/02/22-rdf-syntax-ns#subject> <http://wikidata.dbpedia.org/resou...",
73
+ "sparql_wikidata": " select distinct ?obj where { wd:Q188920 wdt:P2813 ?obj . ?obj wdt:P31 wd:Q1002697 } ",
74
+ "subgraph": "simple question right",
75
+ "template": " <S P ?O ; ?O instanceOf Type>",
76
+ "template_index": 65,
77
+ "uid": 19719
78
+ }
79
+ ```
80
+
81
+ ### [Data Fields](#data-fields)
82
+
83
+ The data fields are the same among all splits.
84
+
85
+ #### default
86
+ - `NNQT_question`: a `string` feature.
87
+ - `uid`: a `int32` feature.
88
+ - `subgraph`: a `string` feature.
89
+ - `template_index`: a `int32` feature.
90
+ - `question`: a `string` feature.
91
+ - `sparql_wikidata`: a `string` feature.
92
+ - `sparql_dbpedia18`: a `string` feature.
93
+ - `template`: a `string` feature.
94
+ - `paraphrased_question`: a `string` feature.
95
+
96
+ ### [Data Splits Sample Size](#data-splits-sample-size)
97
+
98
+ | name |train|test|
99
+ |-------|----:|---:|
100
+ |default|19293|4781|
101
+
102
+ ## [Dataset Creation](#dataset-creation)
103
+
104
+ ### [Curation Rationale](#curation-rationale)
105
+
106
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
107
+
108
+ ### [Source Data](#source-data)
109
+
110
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
111
+
112
+ ### [Annotations](#annotations)
113
+
114
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
115
+
116
+ ### [Personal and Sensitive Information](#personal-and-sensitive-information)
117
+
118
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
119
+
120
+ ## [Considerations for Using the Data](#considerations-for-using-the-data)
121
+
122
+ ### [Social Impact of Dataset](#social-impact-of-dataset)
123
+
124
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
125
+
126
+ ### [Discussion of Biases](#discussion-of-biases)
127
+
128
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
129
+
130
+ ### [Other Known Limitations](#other-known-limitations)
131
+
132
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
133
+
134
+ ## [Additional Information](#additional-information)
135
+
136
+ ### [Dataset Curators](#dataset-curators)
137
+
138
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
139
+
140
+ ### [Licensing Information](#licensing-information)
141
+
142
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
143
+
144
+ ### [Citation Information](#citation-information)
145
+
146
+ ```
147
+
148
+ @inproceedings{dubey2017lc2,
149
+ title={LC-QuAD 2.0: A Large Dataset for Complex Question Answering over Wikidata and DBpedia},
150
+ author={Dubey, Mohnish and Banerjee, Debayan and Abdelkawi, Abdelrahman and Lehmann, Jens},
151
+ booktitle={Proceedings of the 18th International Semantic Web Conference (ISWC)},
152
+ year={2019},
153
+ organization={Springer}
154
+ }
155
+
156
+ ```
157
+
158
+
159
+ ### Contributions
160
+
161
+ Thanks to [@lewtun](https://github.com/lewtun), [@thomwolf](https://github.com/thomwolf), [@patrickvonplaten](https://github.com/patrickvonplaten) for adding this dataset.