Datasets:
Tasks:
Text Retrieval
Modalities:
Text
Formats:
json
Sub-tasks:
document-retrieval
Languages:
English
Size:
1M - 10M
Tags:
text-retrieval
License:
Upload 4 files
Browse files- .gitattributes +3 -0
- README.md +75 -3
- corpus.jsonl +3 -0
- excluded_ids.jsonl +3 -0
- queries.jsonl +3 -0
.gitattributes
CHANGED
|
@@ -57,3 +57,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 57 |
# Video files - compressed
|
| 58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
| 57 |
# Video files - compressed
|
| 58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
corpus.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
excluded_ids.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
queries.jsonl filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -1,3 +1,75 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
multilinguality:
|
| 5 |
+
- monolingual
|
| 6 |
+
task_categories:
|
| 7 |
+
- text-retrieval
|
| 8 |
+
source_datasets:
|
| 9 |
+
- mse
|
| 10 |
+
task_ids:
|
| 11 |
+
- document-retrieval
|
| 12 |
+
config_names:
|
| 13 |
+
- corpus
|
| 14 |
+
tags:
|
| 15 |
+
- text-retrieval
|
| 16 |
+
dataset_info:
|
| 17 |
+
- config_name: default
|
| 18 |
+
features:
|
| 19 |
+
- name: query-id
|
| 20 |
+
dtype: string
|
| 21 |
+
- name: corpus-id
|
| 22 |
+
dtype: string
|
| 23 |
+
- name: score
|
| 24 |
+
dtype: float64
|
| 25 |
+
splits:
|
| 26 |
+
- name: test
|
| 27 |
+
num_examples: 44737
|
| 28 |
+
- config_name: corpus
|
| 29 |
+
features:
|
| 30 |
+
- name: _id
|
| 31 |
+
dtype: string
|
| 32 |
+
- name: title
|
| 33 |
+
dtype: string
|
| 34 |
+
- name: text
|
| 35 |
+
dtype: string
|
| 36 |
+
splits:
|
| 37 |
+
- name: corpus
|
| 38 |
+
num_examples: 1350505
|
| 39 |
+
- config_name: queries
|
| 40 |
+
features:
|
| 41 |
+
- name: _id
|
| 42 |
+
dtype: string
|
| 43 |
+
- name: text
|
| 44 |
+
dtype: string
|
| 45 |
+
splits:
|
| 46 |
+
- name: queries
|
| 47 |
+
num_examples: 25116
|
| 48 |
+
- config_name: excluded_ids
|
| 49 |
+
features:
|
| 50 |
+
- name: query-id
|
| 51 |
+
dtype: string
|
| 52 |
+
- name: excluded-ids
|
| 53 |
+
sequence:
|
| 54 |
+
dtype: string
|
| 55 |
+
splits:
|
| 56 |
+
- name: excluded_ids
|
| 57 |
+
num_examples: 25116
|
| 58 |
+
configs:
|
| 59 |
+
- config_name: default
|
| 60 |
+
data_files:
|
| 61 |
+
- split: test
|
| 62 |
+
path: qrels/test.jsonl
|
| 63 |
+
- config_name: corpus
|
| 64 |
+
data_files:
|
| 65 |
+
- split: corpus
|
| 66 |
+
path: corpus.jsonl
|
| 67 |
+
- config_name: queries
|
| 68 |
+
data_files:
|
| 69 |
+
- split: queries
|
| 70 |
+
path: queries.jsonl
|
| 71 |
+
- config_name: excluded_ids
|
| 72 |
+
data_files:
|
| 73 |
+
- split: excluded_ids
|
| 74 |
+
path: excluded_ids.jsonl
|
| 75 |
+
---
|
corpus.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ef991270a74387c831fca8ab068fc66ca0d1de4a99c2c96c00fff6bb03cb6fb4
|
| 3 |
+
size 1077395380
|
excluded_ids.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8cce8c22cb1613cf8ca0e32b1d3c2fac5bae9910ae3cfef690a8e73afa3e41f2
|
| 3 |
+
size 10698665949
|
queries.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a44918d53545f4ee6f5f0aefd6ca00c5950c21c6b446d148e026e6a10df9d960
|
| 3 |
+
size 16348885
|