Datasets:
Tasks:
Text Retrieval
Modalities:
Text
Formats:
json
Sub-tasks:
document-retrieval
Languages:
English
Size:
< 1K
ArXiv:
License:
Add
Browse files- .gitattributes +2 -0
- README.md +78 -0
- corpus.jsonl +3 -0
- qrels/test.jsonl +195 -0
- queries.jsonl +3 -0
.gitattributes
CHANGED
|
@@ -53,3 +53,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 53 |
*.jpg filter=lfs diff=lfs merge=lfs -text
|
| 54 |
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
| 55 |
*.webp filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 53 |
*.jpg filter=lfs diff=lfs merge=lfs -text
|
| 54 |
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
| 55 |
*.webp filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
corpus.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
queries.jsonl filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
multilinguality:
|
| 5 |
+
- monolingual
|
| 6 |
+
task_categories:
|
| 7 |
+
- text-retrieval
|
| 8 |
+
source_datasets:
|
| 9 |
+
- https://zenodo.org/records/4063986
|
| 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: 195
|
| 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: 186
|
| 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: 50
|
| 48 |
+
configs:
|
| 49 |
+
- config_name: default
|
| 50 |
+
data_files:
|
| 51 |
+
- split: test
|
| 52 |
+
path: qrels/test.jsonl
|
| 53 |
+
- config_name: corpus
|
| 54 |
+
data_files:
|
| 55 |
+
- split: corpus
|
| 56 |
+
path: corpus.jsonl
|
| 57 |
+
- config_name: queries
|
| 58 |
+
data_files:
|
| 59 |
+
- split: queries
|
| 60 |
+
path: queries.jsonl
|
| 61 |
+
---
|
| 62 |
+
|
| 63 |
+
**AILA_casedocs**
|
| 64 |
+
|
| 65 |
+
- Original link: https://zenodo.org/records/4063986
|
| 66 |
+
- The task is to retrieve the case document that most closely matches or is most relevant to the scenario described in the provided query.
|
| 67 |
+
- The query set comprises 50 queries, each describing a specific situation.
|
| 68 |
+
- The corpus set consists of case documents.
|
| 69 |
+
|
| 70 |
+
**Usage**
|
| 71 |
+
```
|
| 72 |
+
import datasets
|
| 73 |
+
|
| 74 |
+
# Download the dataset
|
| 75 |
+
queries = datasets.load_dataset("mteb/AILA_casedocs", "queries")
|
| 76 |
+
documents = datasets.load_dataset("mteb/AILA_casedocs", "corpus")
|
| 77 |
+
pair_labels = datasets.load_dataset("mteb/AILA_casedocs", "default")
|
| 78 |
+
```
|
corpus.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1df8d719a1afa050abf0d92050c6240e8bf5c885f73c895e76b3c34af7964dcd
|
| 3 |
+
size 5036108
|
qrels/test.jsonl
ADDED
|
@@ -0,0 +1,195 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"query-id": "00000", "corpus-id": "FCIX3BYOtD", "score": 1}
|
| 2 |
+
{"query-id": "00000", "corpus-id": "YsP6ihgIqL", "score": 1}
|
| 3 |
+
{"query-id": "00001", "corpus-id": "QMgV0Lh8Wv", "score": 1}
|
| 4 |
+
{"query-id": "00001", "corpus-id": "0pKGytvukF", "score": 1}
|
| 5 |
+
{"query-id": "00002", "corpus-id": "3UDqpNVGMr", "score": 1}
|
| 6 |
+
{"query-id": "00003", "corpus-id": "ZDYUvh7i71", "score": 1}
|
| 7 |
+
{"query-id": "00004", "corpus-id": "tST18iwItC", "score": 1}
|
| 8 |
+
{"query-id": "00004", "corpus-id": "efQrSO42uK", "score": 1}
|
| 9 |
+
{"query-id": "00004", "corpus-id": "gMXAdx9G81", "score": 1}
|
| 10 |
+
{"query-id": "00004", "corpus-id": "r4Eh0C3BfQ", "score": 1}
|
| 11 |
+
{"query-id": "00004", "corpus-id": "PNLbWphJeV", "score": 1}
|
| 12 |
+
{"query-id": "00005", "corpus-id": "QR6FEecAtp", "score": 1}
|
| 13 |
+
{"query-id": "00005", "corpus-id": "50OXirZRiR", "score": 1}
|
| 14 |
+
{"query-id": "00005", "corpus-id": "18Y2bTu5X1", "score": 1}
|
| 15 |
+
{"query-id": "00005", "corpus-id": "qWCA79ISjs", "score": 1}
|
| 16 |
+
{"query-id": "00006", "corpus-id": "JHS64k2k59", "score": 1}
|
| 17 |
+
{"query-id": "00007", "corpus-id": "pkObaWoukd", "score": 1}
|
| 18 |
+
{"query-id": "00007", "corpus-id": "CtlRJoWcUR", "score": 1}
|
| 19 |
+
{"query-id": "00007", "corpus-id": "NbrnTP3fAb", "score": 1}
|
| 20 |
+
{"query-id": "00008", "corpus-id": "rsK9EjHvIH", "score": 1}
|
| 21 |
+
{"query-id": "00008", "corpus-id": "DmH5RiMKpP", "score": 1}
|
| 22 |
+
{"query-id": "00009", "corpus-id": "JLQ6xVJGyO", "score": 1}
|
| 23 |
+
{"query-id": "00009", "corpus-id": "UMVmI5BRh8", "score": 1}
|
| 24 |
+
{"query-id": "00009", "corpus-id": "B19sMLT6mn", "score": 1}
|
| 25 |
+
{"query-id": "00010", "corpus-id": "2qFl41sNLj", "score": 1}
|
| 26 |
+
{"query-id": "00010", "corpus-id": "8EE5GXTeLY", "score": 1}
|
| 27 |
+
{"query-id": "00011", "corpus-id": "ILft9SGVZe", "score": 1}
|
| 28 |
+
{"query-id": "00012", "corpus-id": "GCLgR0OVSn", "score": 1}
|
| 29 |
+
{"query-id": "00012", "corpus-id": "5eZffTYIKI", "score": 1}
|
| 30 |
+
{"query-id": "00012", "corpus-id": "YqWg21nYCs", "score": 1}
|
| 31 |
+
{"query-id": "00013", "corpus-id": "4efLerNHu9", "score": 1}
|
| 32 |
+
{"query-id": "00014", "corpus-id": "JLQ6xVJGyO", "score": 1}
|
| 33 |
+
{"query-id": "00015", "corpus-id": "6UmFFciuDC", "score": 1}
|
| 34 |
+
{"query-id": "00015", "corpus-id": "DIq2AnHTmt", "score": 1}
|
| 35 |
+
{"query-id": "00016", "corpus-id": "9NIQ0Wobtq", "score": 1}
|
| 36 |
+
{"query-id": "00016", "corpus-id": "n62tOy4Cqp", "score": 1}
|
| 37 |
+
{"query-id": "00016", "corpus-id": "gAk7Gdp0CX", "score": 1}
|
| 38 |
+
{"query-id": "00017", "corpus-id": "RBT7qYHDBT", "score": 1}
|
| 39 |
+
{"query-id": "00018", "corpus-id": "TtLFxJpRa5", "score": 1}
|
| 40 |
+
{"query-id": "00018", "corpus-id": "ArQEPcyLas", "score": 1}
|
| 41 |
+
{"query-id": "00018", "corpus-id": "08YMNb5Zql", "score": 1}
|
| 42 |
+
{"query-id": "00018", "corpus-id": "6JDWYlgAAC", "score": 1}
|
| 43 |
+
{"query-id": "00019", "corpus-id": "P9K63LSFZH", "score": 1}
|
| 44 |
+
{"query-id": "00019", "corpus-id": "NJOVzNEMr7", "score": 1}
|
| 45 |
+
{"query-id": "00020", "corpus-id": "BnD3XkfFNu", "score": 1}
|
| 46 |
+
{"query-id": "00020", "corpus-id": "nnBbuQzkCh", "score": 1}
|
| 47 |
+
{"query-id": "00020", "corpus-id": "9s8OrJQUdL", "score": 1}
|
| 48 |
+
{"query-id": "00020", "corpus-id": "tUeC99enq5", "score": 1}
|
| 49 |
+
{"query-id": "00021", "corpus-id": "Y7gbtP7ySe", "score": 1}
|
| 50 |
+
{"query-id": "00021", "corpus-id": "SstzyshA6P", "score": 1}
|
| 51 |
+
{"query-id": "00022", "corpus-id": "xavU07zUHL", "score": 1}
|
| 52 |
+
{"query-id": "00022", "corpus-id": "ZESFqZ8pIx", "score": 1}
|
| 53 |
+
{"query-id": "00023", "corpus-id": "YxPY8EcFK1", "score": 1}
|
| 54 |
+
{"query-id": "00024", "corpus-id": "AwFv0Yg7NZ", "score": 1}
|
| 55 |
+
{"query-id": "00024", "corpus-id": "uQO001xtSV", "score": 1}
|
| 56 |
+
{"query-id": "00024", "corpus-id": "q0Zf2pCLxb", "score": 1}
|
| 57 |
+
{"query-id": "00024", "corpus-id": "2BGCSzOjD8", "score": 1}
|
| 58 |
+
{"query-id": "00024", "corpus-id": "850kEnydx9", "score": 1}
|
| 59 |
+
{"query-id": "00024", "corpus-id": "FVr9Qh8yXv", "score": 1}
|
| 60 |
+
{"query-id": "00025", "corpus-id": "uPGtk4vvVS", "score": 1}
|
| 61 |
+
{"query-id": "00025", "corpus-id": "SmNqE40fAr", "score": 1}
|
| 62 |
+
{"query-id": "00025", "corpus-id": "JnOng0wVJY", "score": 1}
|
| 63 |
+
{"query-id": "00025", "corpus-id": "4HZKjht3X1", "score": 1}
|
| 64 |
+
{"query-id": "00025", "corpus-id": "phlhHVlnES", "score": 1}
|
| 65 |
+
{"query-id": "00025", "corpus-id": "HtYDZw69Cr", "score": 1}
|
| 66 |
+
{"query-id": "00025", "corpus-id": "8JHUdKF0j7", "score": 1}
|
| 67 |
+
{"query-id": "00025", "corpus-id": "Rtva1JyiNb", "score": 1}
|
| 68 |
+
{"query-id": "00026", "corpus-id": "r9HE60Dlgk", "score": 1}
|
| 69 |
+
{"query-id": "00026", "corpus-id": "OjkeaBKsoR", "score": 1}
|
| 70 |
+
{"query-id": "00026", "corpus-id": "zKG5mSoyPs", "score": 1}
|
| 71 |
+
{"query-id": "00026", "corpus-id": "S87XwXaHCP", "score": 1}
|
| 72 |
+
{"query-id": "00026", "corpus-id": "kWCRNYdWCs", "score": 1}
|
| 73 |
+
{"query-id": "00027", "corpus-id": "u8zF9OHzlw", "score": 1}
|
| 74 |
+
{"query-id": "00027", "corpus-id": "ndZ4szi6sE", "score": 1}
|
| 75 |
+
{"query-id": "00028", "corpus-id": "6jOSL0IZbc", "score": 1}
|
| 76 |
+
{"query-id": "00028", "corpus-id": "XRvj7uff0L", "score": 1}
|
| 77 |
+
{"query-id": "00028", "corpus-id": "ZXe1cb51JJ", "score": 1}
|
| 78 |
+
{"query-id": "00028", "corpus-id": "RCQ5WMO5AH", "score": 1}
|
| 79 |
+
{"query-id": "00028", "corpus-id": "YUPnmbpD0e", "score": 1}
|
| 80 |
+
{"query-id": "00028", "corpus-id": "BGjxrzuLWO", "score": 1}
|
| 81 |
+
{"query-id": "00028", "corpus-id": "TtLFxJpRa5", "score": 1}
|
| 82 |
+
{"query-id": "00028", "corpus-id": "MM0jQb6gbt", "score": 1}
|
| 83 |
+
{"query-id": "00028", "corpus-id": "5F21rWz5FY", "score": 1}
|
| 84 |
+
{"query-id": "00028", "corpus-id": "gQH8wylh0C", "score": 1}
|
| 85 |
+
{"query-id": "00028", "corpus-id": "P1uRr6YICt", "score": 1}
|
| 86 |
+
{"query-id": "00028", "corpus-id": "jMPqPEBqUh", "score": 1}
|
| 87 |
+
{"query-id": "00028", "corpus-id": "8Y7XsrSvBp", "score": 1}
|
| 88 |
+
{"query-id": "00028", "corpus-id": "8GrgmolaHr", "score": 1}
|
| 89 |
+
{"query-id": "00028", "corpus-id": "sUkiH8G4Zp", "score": 1}
|
| 90 |
+
{"query-id": "00028", "corpus-id": "OZM4OtBJTf", "score": 1}
|
| 91 |
+
{"query-id": "00028", "corpus-id": "7nvdE2ODH0", "score": 1}
|
| 92 |
+
{"query-id": "00028", "corpus-id": "30pNIhsHFk", "score": 1}
|
| 93 |
+
{"query-id": "00028", "corpus-id": "8NBQv2WNl7", "score": 1}
|
| 94 |
+
{"query-id": "00028", "corpus-id": "nipuaUkxRF", "score": 1}
|
| 95 |
+
{"query-id": "00028", "corpus-id": "hF4vTYYojm", "score": 1}
|
| 96 |
+
{"query-id": "00028", "corpus-id": "Is9hVLXnGB", "score": 1}
|
| 97 |
+
{"query-id": "00029", "corpus-id": "MbyIbNiCdx", "score": 1}
|
| 98 |
+
{"query-id": "00029", "corpus-id": "A4dhjkuRv6", "score": 1}
|
| 99 |
+
{"query-id": "00029", "corpus-id": "cmc5F9HpUl", "score": 1}
|
| 100 |
+
{"query-id": "00029", "corpus-id": "2ceN59UAgN", "score": 1}
|
| 101 |
+
{"query-id": "00029", "corpus-id": "zgEz6cwB61", "score": 1}
|
| 102 |
+
{"query-id": "00029", "corpus-id": "YkBzPoBrUB", "score": 1}
|
| 103 |
+
{"query-id": "00029", "corpus-id": "Xoblu17rNy", "score": 1}
|
| 104 |
+
{"query-id": "00029", "corpus-id": "hPInRVkLUh", "score": 1}
|
| 105 |
+
{"query-id": "00029", "corpus-id": "nFbmOHnKYa", "score": 1}
|
| 106 |
+
{"query-id": "00029", "corpus-id": "A2TVwyJmIe", "score": 1}
|
| 107 |
+
{"query-id": "00030", "corpus-id": "g00rVq4jB6", "score": 1}
|
| 108 |
+
{"query-id": "00030", "corpus-id": "td26fEeVVh", "score": 1}
|
| 109 |
+
{"query-id": "00031", "corpus-id": "GNdzSgVaI5", "score": 1}
|
| 110 |
+
{"query-id": "00031", "corpus-id": "BovCzfAPxj", "score": 1}
|
| 111 |
+
{"query-id": "00031", "corpus-id": "RcoreogrNw", "score": 1}
|
| 112 |
+
{"query-id": "00032", "corpus-id": "uhvPU1S8Lv", "score": 1}
|
| 113 |
+
{"query-id": "00033", "corpus-id": "3MsHarAJOC", "score": 1}
|
| 114 |
+
{"query-id": "00033", "corpus-id": "yE6752aJg8", "score": 1}
|
| 115 |
+
{"query-id": "00033", "corpus-id": "9vOWOU6mbj", "score": 1}
|
| 116 |
+
{"query-id": "00033", "corpus-id": "HRsYwP8KXS", "score": 1}
|
| 117 |
+
{"query-id": "00033", "corpus-id": "Q7iLWceWwx", "score": 1}
|
| 118 |
+
{"query-id": "00033", "corpus-id": "2BR4cXsxjG", "score": 1}
|
| 119 |
+
{"query-id": "00033", "corpus-id": "DO4lKNEfvu", "score": 1}
|
| 120 |
+
{"query-id": "00033", "corpus-id": "INM1MjeBsr", "score": 1}
|
| 121 |
+
{"query-id": "00033", "corpus-id": "nuVxUZpfbH", "score": 1}
|
| 122 |
+
{"query-id": "00033", "corpus-id": "BaepZITGgr", "score": 1}
|
| 123 |
+
{"query-id": "00033", "corpus-id": "QsKDGAUuRq", "score": 1}
|
| 124 |
+
{"query-id": "00033", "corpus-id": "8H6h8l7qgA", "score": 1}
|
| 125 |
+
{"query-id": "00033", "corpus-id": "IqK3yn9Ffc", "score": 1}
|
| 126 |
+
{"query-id": "00034", "corpus-id": "JXke1Mo4iC", "score": 1}
|
| 127 |
+
{"query-id": "00034", "corpus-id": "22wjZRL9Oa", "score": 1}
|
| 128 |
+
{"query-id": "00035", "corpus-id": "NAp0mxDoJJ", "score": 1}
|
| 129 |
+
{"query-id": "00035", "corpus-id": "TGUDWFgF6c", "score": 1}
|
| 130 |
+
{"query-id": "00035", "corpus-id": "LFuMk9TsuZ", "score": 1}
|
| 131 |
+
{"query-id": "00035", "corpus-id": "mRtv5XqhPx", "score": 1}
|
| 132 |
+
{"query-id": "00035", "corpus-id": "CplTXJUk13", "score": 1}
|
| 133 |
+
{"query-id": "00035", "corpus-id": "piAMozPf8e", "score": 1}
|
| 134 |
+
{"query-id": "00036", "corpus-id": "NQLlpIn8sr", "score": 1}
|
| 135 |
+
{"query-id": "00036", "corpus-id": "u8zF9OHzlw", "score": 1}
|
| 136 |
+
{"query-id": "00036", "corpus-id": "ndZ4szi6sE", "score": 1}
|
| 137 |
+
{"query-id": "00037", "corpus-id": "0lnXv2Rra6", "score": 1}
|
| 138 |
+
{"query-id": "00037", "corpus-id": "E4rXLvNMQS", "score": 1}
|
| 139 |
+
{"query-id": "00037", "corpus-id": "eNo41eoPni", "score": 1}
|
| 140 |
+
{"query-id": "00037", "corpus-id": "wmq6OLkTkx", "score": 1}
|
| 141 |
+
{"query-id": "00037", "corpus-id": "9OBGhnuKon", "score": 1}
|
| 142 |
+
{"query-id": "00038", "corpus-id": "3npgW2zMj5", "score": 1}
|
| 143 |
+
{"query-id": "00038", "corpus-id": "RzhbuXMZ5f", "score": 1}
|
| 144 |
+
{"query-id": "00038", "corpus-id": "phTExIqqB9", "score": 1}
|
| 145 |
+
{"query-id": "00038", "corpus-id": "zHzmA4KR1V", "score": 1}
|
| 146 |
+
{"query-id": "00038", "corpus-id": "sUkiH8G4Zp", "score": 1}
|
| 147 |
+
{"query-id": "00038", "corpus-id": "dFtCdZe11M", "score": 1}
|
| 148 |
+
{"query-id": "00038", "corpus-id": "HteOtLAQvc", "score": 1}
|
| 149 |
+
{"query-id": "00038", "corpus-id": "scAXCg4KbF", "score": 1}
|
| 150 |
+
{"query-id": "00038", "corpus-id": "mn1uj3a1ii", "score": 1}
|
| 151 |
+
{"query-id": "00038", "corpus-id": "Arp5B1Id9Z", "score": 1}
|
| 152 |
+
{"query-id": "00038", "corpus-id": "ppaX3QjBvK", "score": 1}
|
| 153 |
+
{"query-id": "00038", "corpus-id": "f7ZJ69PqcU", "score": 1}
|
| 154 |
+
{"query-id": "00039", "corpus-id": "PKY6gob2I4", "score": 1}
|
| 155 |
+
{"query-id": "00039", "corpus-id": "iv7RyK6txX", "score": 1}
|
| 156 |
+
{"query-id": "00040", "corpus-id": "jdg3vSFkpB", "score": 1}
|
| 157 |
+
{"query-id": "00040", "corpus-id": "O4ZektUJrh", "score": 1}
|
| 158 |
+
{"query-id": "00040", "corpus-id": "qpgrxMp1ju", "score": 1}
|
| 159 |
+
{"query-id": "00040", "corpus-id": "8IRh1E2JDB", "score": 1}
|
| 160 |
+
{"query-id": "00040", "corpus-id": "RcoreogrNw", "score": 1}
|
| 161 |
+
{"query-id": "00041", "corpus-id": "ln6Eoie0gV", "score": 1}
|
| 162 |
+
{"query-id": "00041", "corpus-id": "zNmREpOaUV", "score": 1}
|
| 163 |
+
{"query-id": "00041", "corpus-id": "W1GC7dDyQE", "score": 1}
|
| 164 |
+
{"query-id": "00041", "corpus-id": "LojIIf94Ch", "score": 1}
|
| 165 |
+
{"query-id": "00042", "corpus-id": "HSUPwePut0", "score": 1}
|
| 166 |
+
{"query-id": "00042", "corpus-id": "g3iCPU6zUj", "score": 1}
|
| 167 |
+
{"query-id": "00042", "corpus-id": "QbD7WWJSKk", "score": 1}
|
| 168 |
+
{"query-id": "00043", "corpus-id": "jQzW52Tdim", "score": 1}
|
| 169 |
+
{"query-id": "00043", "corpus-id": "1v9r86eNwX", "score": 1}
|
| 170 |
+
{"query-id": "00043", "corpus-id": "ld6DYyeNdj", "score": 1}
|
| 171 |
+
{"query-id": "00043", "corpus-id": "erqtHioRRd", "score": 1}
|
| 172 |
+
{"query-id": "00043", "corpus-id": "Z2cuVixkZV", "score": 1}
|
| 173 |
+
{"query-id": "00043", "corpus-id": "WvTMVTucHY", "score": 1}
|
| 174 |
+
{"query-id": "00044", "corpus-id": "wW1uhw3U3x", "score": 1}
|
| 175 |
+
{"query-id": "00044", "corpus-id": "TP9gyv1plB", "score": 1}
|
| 176 |
+
{"query-id": "00045", "corpus-id": "fSEVQOEXfn", "score": 1}
|
| 177 |
+
{"query-id": "00045", "corpus-id": "XFhmiXbIwX", "score": 1}
|
| 178 |
+
{"query-id": "00045", "corpus-id": "0tveH30S5N", "score": 1}
|
| 179 |
+
{"query-id": "00045", "corpus-id": "GF9IyDN8pb", "score": 1}
|
| 180 |
+
{"query-id": "00045", "corpus-id": "JtVEFEtb6F", "score": 1}
|
| 181 |
+
{"query-id": "00045", "corpus-id": "YPZTQGOAww", "score": 1}
|
| 182 |
+
{"query-id": "00045", "corpus-id": "VHWGaub52Z", "score": 1}
|
| 183 |
+
{"query-id": "00045", "corpus-id": "aVNqTIAae2", "score": 1}
|
| 184 |
+
{"query-id": "00045", "corpus-id": "DXQsedBEmL", "score": 1}
|
| 185 |
+
{"query-id": "00046", "corpus-id": "YxPY8EcFK1", "score": 1}
|
| 186 |
+
{"query-id": "00047", "corpus-id": "nBvbdFo9xb", "score": 1}
|
| 187 |
+
{"query-id": "00047", "corpus-id": "aSQHqNgAC7", "score": 1}
|
| 188 |
+
{"query-id": "00047", "corpus-id": "YTH8xIZM1J", "score": 1}
|
| 189 |
+
{"query-id": "00047", "corpus-id": "xG7YXipN2I", "score": 1}
|
| 190 |
+
{"query-id": "00048", "corpus-id": "LVOkVEUVB5", "score": 1}
|
| 191 |
+
{"query-id": "00048", "corpus-id": "UnAvwSWJfd", "score": 1}
|
| 192 |
+
{"query-id": "00048", "corpus-id": "z52Dm7tO4f", "score": 1}
|
| 193 |
+
{"query-id": "00048", "corpus-id": "elKPoh3pKM", "score": 1}
|
| 194 |
+
{"query-id": "00049", "corpus-id": "QMgV0Lh8Wv", "score": 1}
|
| 195 |
+
{"query-id": "00049", "corpus-id": "0pKGytvukF", "score": 1}
|
queries.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fb14f0569f9a207eb0ef1285ecc5db71ccaebd99ff9d93ffa8c13a735848c179
|
| 3 |
+
size 153417
|