casey-martin
commited on
Commit
•
0d40bcf
1
Parent(s):
f3c9d37
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,56 @@
|
|
1 |
---
|
2 |
license: cc-by-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: cc-by-4.0
|
3 |
+
task_categories:
|
4 |
+
- table-question-answering
|
5 |
+
- text2text-generation
|
6 |
+
language:
|
7 |
+
- en
|
8 |
+
tags:
|
9 |
+
- sparql
|
10 |
+
- semantic web
|
11 |
+
- knowledge graph
|
12 |
+
- knowledge base
|
13 |
+
- dbpedia
|
14 |
+
pretty_name: VQuAnDa - Verbalization Question Answering Dataset
|
15 |
+
size_categories:
|
16 |
+
- 1K<n<10K
|
17 |
---
|
18 |
+
# VQuAnDa - Verbalization Question Answering Dataset
|
19 |
+
## Background
|
20 |
+
[VQuAnDa](https://dl.acm.org/doi/abs/10.1007/978-3-030-49461-2_31) is knowledge base QA dataset based on
|
21 |
+
[LC-QuAD](https://github.com/AskNowQA/LC-QuAD) which uses
|
22 |
+
[DBpedia v04.16](https://wiki.dbpedia.org/dbpedia-version-2016-04) as the target KB.
|
23 |
+
|
24 |
+
This QA task consists of two components:
|
25 |
+
1. A Text2Sparql task where a natural language query is translated to a SPARQL query.
|
26 |
+
2. An RDF triple to verbalized answer task where the knowledge base query result must be translated back into natural language.
|
27 |
+
|
28 |
+
The dataset is in JSON format, and it contains 5000 examples (4000 train/1000 test).
|
29 |
+
An example is shown below. The query result is surrounded by brackets `[]` in the verbalized answer.
|
30 |
+
```
|
31 |
+
{
|
32 |
+
"uid" : "3508"
|
33 |
+
"question" : "How many shows are aired on Comedy Central?"
|
34 |
+
"verbalized_answer" : "There are [73] television shows broadcasted by..."
|
35 |
+
"query" : "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http:..."
|
36 |
+
}
|
37 |
+
```
|
38 |
+
|
39 |
+
## Baseline models
|
40 |
+
Alongside the dataset, the authors provide some baseline models.
|
41 |
+
[Here](https://github.com/endrikacupaj/VQUANDA-Baseline-Models) you can find the baseline implementations and instructions for how to run them.
|
42 |
+
|
43 |
+
## License
|
44 |
+
The dataset is under [Attribution 4.0 International (CC BY 4.0)](LICENSE)
|
45 |
+
|
46 |
+
## Cite
|
47 |
+
```
|
48 |
+
@InProceedings{kacupaj2020vquanda,
|
49 |
+
title={VQuAnDa: Verbalization QUestion ANswering DAtaset},
|
50 |
+
author={Kacupaj, Endri and Zafar, Hamid and Lehmann, Jens and Maleshkova, Maria},
|
51 |
+
booktitle={The Semantic Web},
|
52 |
+
pages={531--547},
|
53 |
+
year={2020},
|
54 |
+
publisher={Springer International Publishing},
|
55 |
+
}
|
56 |
+
```
|