jianqunZ commited on
Commit
6b88aa9
·
verified ·
1 Parent(s): c312d40

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +85 -3
README.md CHANGED
@@ -1,3 +1,85 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ multilinguality:
5
+ - monolingual
6
+ task_categories:
7
+ - text-retrieval
8
+ source_datasets:
9
+ - core2017
10
+ task_ids:
11
+ - document-retrieval
12
+ config_names:
13
+ - corpus
14
+ tags:
15
+ - text-retrieval
16
+ - instruction-retrieval
17
+ dataset_info:
18
+ - config_name: qrels_og
19
+ features:
20
+ - name: query-id
21
+ dtype: string
22
+ - name: corpus-id
23
+ dtype: string
24
+ - name: score
25
+ dtype: float64
26
+ splits:
27
+ - name: test
28
+ num_examples: 900
29
+ - config_name: qrels_changed
30
+ features:
31
+ - name: query-id
32
+ dtype: string
33
+ - name: corpus-id
34
+ dtype: string
35
+ - name: score
36
+ dtype: float64
37
+ splits:
38
+ - name: test
39
+ num_examples: 900
40
+ - config_name: corpus
41
+ features:
42
+ - name: _id
43
+ dtype: string
44
+ - name: title
45
+ dtype: string
46
+ - name: text
47
+ dtype: string
48
+ splits:
49
+ - name: corpus
50
+ num_examples: 1200
51
+ - config_name: queries
52
+ features:
53
+ - name: _id
54
+ dtype: string
55
+ - name: text
56
+ dtype: string
57
+ - name: instruction_og
58
+ dtype: string
59
+ - name: instruction_changed
60
+ dtype: string
61
+ - name: keywords
62
+ dtype: string
63
+ - name: short_query
64
+ dtype: string
65
+ splits:
66
+ - name: queries
67
+ num_examples: 300
68
+ configs:
69
+ - config_name: qrels_og
70
+ data_files:
71
+ - split: test
72
+ path: qrels_og/test.jsonl
73
+ - config_name: qrels_changed
74
+ data_files:
75
+ - split: test
76
+ path: qrels_changed/test.jsonl
77
+ - config_name: corpus
78
+ data_files:
79
+ - split: corpus
80
+ path: corpus.jsonl
81
+ - config_name: queries
82
+ data_files:
83
+ - split: queries
84
+ path: queries.jsonl
85
+ ---