giguru commited on
Commit
cbe1d2f
1 Parent(s): a50bb4c

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +56 -0
README.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # TREC Cast 2019
2
+
3
+ [TREC Cast](http://www.treccast.ai) have released a document collection with topics and qrels of which a subset has been annotated such that it is suitable for multi-turn conversational search.
4
+
5
+ ## Dataset statistics
6
+
7
+ - # Passages: 38,426,252
8
+ - # Topics: 20
9
+ - # Queries: 173
10
+
11
+ ## Subsets
12
+
13
+ ### CAR + MSMARCO Collection
14
+ Together CAR and MSMARCO have a size of 6,13G, so downloading will take a while. You can use the collection as followed:
15
+ ```python
16
+ collection = load_dataset('trec-cast-2019-multi-turn', 'test_collection')
17
+ ```
18
+
19
+ The collection has the following data format:
20
+ ```
21
+ docno: str
22
+ The document id format is [collection_id_paragraph_id] with collection id and paragraph id separated by an underscore.
23
+ The collection ids are in the set: {MARCO, CAR}. E.g.: CAR_6869dee46ab12f0f7060874f7fc7b1c57d53144a
24
+ text: str
25
+ The content of the passage.
26
+ ```
27
+
28
+ ### Topics
29
+ You can get the topics as followed:
30
+ ```python
31
+ topics = load_dataset('trec-cast-2019-multi-turn', 'topics')
32
+ ```
33
+
34
+ The topics have the following dataformat:
35
+ ```
36
+ qid: str
37
+ Query ID of the format "topicId_questionNumber"
38
+ history: str[]
39
+ A list of queries. It can be empty for the first question in a topic.
40
+ query: str
41
+ The query
42
+ ```
43
+
44
+ ### Qrels
45
+ You can get the qrels as followed:
46
+ ```python
47
+ qrels = load_dataset('trec-cast-2019-multi-turn', 'qrels')
48
+ ```
49
+
50
+ The qrels have the following data format:
51
+ ```
52
+ qid: str
53
+ Query ID of the format "topicId_questionNumber"
54
+ qrels: List[dict]
55
+ A list of dictionaries with the keys 'docno' and 'relevance'. Relevance is an integer in the range [0, 4]
56
+ ```