File size: 4,021 Bytes
857a6c6
2bbc310
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
857a6c6
2bbc310
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
---
annotations_creators:
- expert-generated
language:
- en
language_creators:
- machine-generated
license:
- cc-by-4.0
multilinguality:
- monolingual
pretty_name: 'DBLP-QuAD: A Question Answering Dataset over the DBLP Scholarly Knowledge Graph'
size_categories:
- 1K<n<10K
source_datasets:
- original
tags:
- knowledge-base-qa
task_categories:
- question-answering
task_ids: []
---

# Dataset Card for DBLP-QuAD

## Table of Contents
- [Dataset Description](#dataset-description)
  - [Dataset Summary](#dataset-summary)
  - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
  - [Languages](#languages)
- [Dataset Structure](#dataset-structure)
  - [Data Instances](#data-instances)
  - [Data Fields](#data-fields)
  - [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
  - [Curation Rationale](#curation-rationale)
  - [Source Data](#source-data)
  - [Annotations](#annotations)
  - [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
  - [Social Impact of Dataset](#social-impact-of-dataset)
  - [Discussion of Biases](#discussion-of-biases)
  - [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
  - [Dataset Curators](#dataset-curators)
  - [Licensing Information](#licensing-information)
  - [Citation Information](#citation-information)
  - [Contributions](#contributions)

## Dataset Description

- **Homepage:** [DBLP-QuAD Homepage]()
- **Repository:** [DBLP-QuAD Repository](https://github.com/awalesushil/DBLP-QuAD)
- **Paper:** DBLP-QuAD: A Question Answering Dataset over the DBLP Scholarly Knowledge Graph
- **Point of Contact:** [Sushil Awale](mailto:[email protected])

### Dataset Summary

DBLP-QuAD is a scholarly knowledge graph question answering dataset with 10,000 question - SPARQL query pairs targeting the DBLP knowledge graph. The dataset is split into 7,000 training, 1,000 validation and 2,000 test questions.

## Dataset Structure

### Data Instances

An example of a question is given below:

```
{
    "id": "Q0577",
    "query_type": "MULTI_FACT",
    "question": {
        "string": "What are the primary affiliations of the authors of the paper 'Graphical Partitions and Graphical Relations'?"
    },
    "paraphrased_question": {
        "string": "List the primary affiliations of the authors of 'Graphical Partitions and Graphical Relations'."
    },
    "query": {
        "sparql": "SELECT DISTINCT ?answer WHERE { <https://dblp.org/rec/journals/fuin/ShaheenS19> <https://dblp.org/rdf/schema#authoredBy> ?x . ?x <https://dblp.org/rdf/schema#primaryAffiliation> ?answer }"
    },
    "template_id": "TP11",
    "entities": [
        "<https://dblp.org/rec/journals/fuin/ShaheenS19>"
    ],
    "relations": [
        "<https://dblp.org/rdf/schema#authoredBy>",
        "<https://dblp.org/rdf/schema#primaryAffiliation>"
    ],
    "temporal": false,
    "held_out": true
}

```
### Data Fields

- `id`: the id of the question
- `question`: a string containing the question
- `paraphrased_question`: a paraphrased version of the question
- `query`: a SPARQL query that answers the question
- `query_type`: the type of the query
- `query_template`: the template of the query
- `entities`: a list of entities in the question
- `relations`: a list of relations in the question
- `temporal`: a boolean indicating whether the question contains a temporal expression
- `held_out`: a boolean indicating whether the question is held out from the training set

### Data Splits

The dataset is split into 7,000 training, 1,000 validation and 2,000 test questions.

## Additional Information

### Licensing Information

DBLP-QuAD is licensed under the [Creative Commons Attribution 4.0 International License (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/).

### Citation Information

In review.

### Contributions

Thanks to [@awalesushil](https://github.com/awalesushil) for adding this dataset.