Datasets:

Languages:
English
ArXiv:
License:
cmalaviya commited on
Commit
594009d
1 Parent(s): 21cd31f

Adds dataset card

Browse files
Files changed (1) hide show
  1. README.md +79 -0
README.md CHANGED
@@ -1,3 +1,82 @@
1
  ---
 
 
 
 
 
 
 
 
 
2
  license: apache-2.0
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ configs:
3
+ - config_name: main
4
+ data_files:
5
+ - split: train
6
+ path: train.jsonl
7
+ - split: test
8
+ path: test.jsonl
9
+ - split: validation
10
+ path: val.jsonl
11
  license: apache-2.0
12
+ task_categories:
13
+ - retrieval
14
+ language:
15
+ - en
16
+ source_datasets:
17
+ - original
18
+ pretty_name: QUEST
19
+ annotations_creators:
20
+ - wikipedia-sourced
21
+ size_categories:
22
+ - 1K<n<10K
23
  ---
24
+
25
+ # Dataset Card for QUEST
26
+
27
+ ## Dataset Description
28
+
29
+ - **Repository: https://github.com/google-research/language/tree/master/language/quest**
30
+ - **Paper: https://arxiv.org/abs/2305.11694**
31
+ - **Point of Contact: [email protected]**
32
+
33
+ ### Dataset Summary
34
+
35
+ We provide here the data accompanying the paper: [QUEST: A Retrieval Dataset of Entity-Seeking Queries with Implicit Set Operations
36
+ ](https://arxiv.org/abs/2305.11694).
37
+
38
+ ## Dataset Structure
39
+
40
+ ### Data Instances
41
+
42
+ QUEST contains 6307 training queries, 323 examples for development, and 1727 examples for testing.
43
+
44
+ ### Data Fields
45
+
46
+ Each examples file contains newline-separated json dictionaries with the following fields:
47
+
48
+ * `query` - Paraphrased query written by annotators.
49
+ * `docs` - List of relevant document titles.
50
+ * `original_query` - The original query which was paraphrased. Atomic queries are
51
+ enclosed by `<mark></mark>`. Augmented queries do not have this field populated.
52
+ * `scores` - This field is not populated and only used when producing predictions to enable sharing the same data structure.
53
+ * `metadata` - A dictionary with the following fields:
54
+ * `template` - The template used to create the query.
55
+ * `domain` - The domain to which the query belongs.
56
+ * `fluency` - List of fluency ratings for the query.
57
+ * `meaning` - List of ratings for whether the paraphrased query meaning is the
58
+ same as the original query.
59
+ * `naturalness` - List of naturalness ratings for the query.
60
+ * `relevance_ratings` - Dictionary mapping document titles to relevance ratings
61
+ for the document.
62
+ * `evidence_ratings` - Dictionary mapping document titles to evidence ratings
63
+ for the document.
64
+ * `attributions` - Dictionary mapping a document title to its attributions
65
+ attributions are a list of dictionaries mapping a query substring to a
66
+ document substring.
67
+
68
+ The document corpus is at https://storage.googleapis.com/gresearch/quest/documents.jsonl. Note that this file is quite large
69
+ (899MB). The format is newline separated json dicts containing `title` and
70
+ `text`.
71
+
72
+ ### Citation Information
73
+
74
+ ```
75
+ @inproceedings{malaviya23expertqa,
76
+ title = {QUEST: A Retrieval Dataset of Entity-Seeking Queries with Implicit Set Operations},
77
+ author = {Chaitanya Malaviya and Peter Shaw and Ming-Wei Chang and Kenton Lee and Kristina Toutanova},
78
+ booktitle = {ACL},
79
+ year = {2023},
80
+ url = "https://arxiv.org/abs/2305.11694"
81
+ }
82
+ ```