Create dataset.yaml
Browse files- dataset.yaml +56 -0
dataset.yaml
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
viewer:
|
2 |
+
configs:
|
3 |
+
- config_name: train_corpus
|
4 |
+
features:
|
5 |
+
- name: doc_id
|
6 |
+
dtype: string
|
7 |
+
- name: text
|
8 |
+
dtype: string
|
9 |
+
- config_name: train_queries
|
10 |
+
features:
|
11 |
+
- name: qid
|
12 |
+
dtype: string
|
13 |
+
- name: text
|
14 |
+
dtype: string
|
15 |
+
- config_name: train_qrels
|
16 |
+
features:
|
17 |
+
- name: qid
|
18 |
+
dtype: string
|
19 |
+
- name: doc_id
|
20 |
+
dtype: string
|
21 |
+
- config_name: dev_corpus
|
22 |
+
features:
|
23 |
+
- name: doc_id
|
24 |
+
dtype: string
|
25 |
+
- name: text
|
26 |
+
dtype: string
|
27 |
+
- config_name: dev_queries
|
28 |
+
features:
|
29 |
+
- name: qid
|
30 |
+
dtype: string
|
31 |
+
- name: text
|
32 |
+
dtype: string
|
33 |
+
- config_name: dev_qrels
|
34 |
+
features:
|
35 |
+
- name: qid
|
36 |
+
dtype: string
|
37 |
+
- name: doc_id
|
38 |
+
dtype: string
|
39 |
+
- config_name: test_corpus
|
40 |
+
features:
|
41 |
+
- name: doc_id
|
42 |
+
dtype: string
|
43 |
+
- name: text
|
44 |
+
dtype: string
|
45 |
+
- config_name: test_queries
|
46 |
+
features:
|
47 |
+
- name: qid
|
48 |
+
dtype: string
|
49 |
+
- name: text
|
50 |
+
dtype: string
|
51 |
+
- config_name: test_qrels
|
52 |
+
features:
|
53 |
+
- name: qid
|
54 |
+
dtype: string
|
55 |
+
- name: doc_id
|
56 |
+
dtype: string
|