Datasets:

Languages:
English
ArXiv:
License:
File size: 2,803 Bytes
1d549f7
594009d
 
 
 
 
 
 
 
 
1d549f7
594009d
fc7ca40
594009d
 
 
 
 
 
 
 
 
1d549f7
594009d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
configs:
- config_name: main
  data_files:
  - split: train
    path: train.jsonl
  - split: test
    path: test.jsonl
  - split: validation
    path: val.jsonl
license: apache-2.0
task_categories:
- text-retrieval
language:
- en
source_datasets:
- original
pretty_name: QUEST
annotations_creators:
- wikipedia-sourced
size_categories:
- 1K<n<10K
---

# Dataset Card for QUEST

## Dataset Description

- **Repository: https://github.com/google-research/language/tree/master/language/quest** 
- **Paper: https://arxiv.org/abs/2305.11694** 
- **Point of Contact: chaitanyamalaviya@gmail.com** 

### Dataset Summary

We provide here the data accompanying the paper: [QUEST: A Retrieval Dataset of Entity-Seeking Queries with Implicit Set Operations
](https://arxiv.org/abs/2305.11694).

## Dataset Structure

### Data Instances

QUEST contains 6307 training queries, 323 examples for development, and 1727 examples for testing.

### Data Fields

Each examples file contains newline-separated json dictionaries with the following fields:

* `query` - Paraphrased query written by annotators.
* `docs` - List of relevant document titles.
* `original_query` - The original query which was paraphrased. Atomic queries are
  enclosed by `<mark></mark>`. Augmented queries do not have this field populated.
* `scores` - This field is not populated and only used when producing predictions to enable sharing the same data structure.
* `metadata` - A dictionary with the following fields:
    * `template` - The template used to create the query.
    * `domain` - The domain to which the query belongs.
    * `fluency` - List of fluency ratings for the query.
    * `meaning` - List of ratings for whether the paraphrased query meaning is the
      same as the original query.
    * `naturalness` - List of naturalness ratings for the query.
    * `relevance_ratings` - Dictionary mapping document titles to relevance ratings
      for the document.
    * `evidence_ratings` - Dictionary mapping document titles to evidence ratings
      for the document.
    * `attributions` - Dictionary mapping a document title to its attributions
      attributions are a list of dictionaries mapping a query substring to a
      document substring.

The document corpus is at https://storage.googleapis.com/gresearch/quest/documents.jsonl. Note that this file is quite large
(899MB). The format is newline separated json dicts containing `title` and
`text`.

### Citation Information

```
@inproceedings{malaviya23expertqa,
    title = {QUEST: A Retrieval Dataset of Entity-Seeking Queries with Implicit Set Operations},
    author = {Chaitanya Malaviya and Peter Shaw and Ming-Wei Chang and Kenton Lee and Kristina Toutanova},
    booktitle = {ACL},
    year = {2023},
    url = "https://arxiv.org/abs/2305.11694"
}
```