clides commited on
Commit
ca3570f
·
1 Parent(s): ed3e479

added python script to automatically generate HITS_INFO dictionary

Browse files
Files changed (5) hide show
  1. .DS_Store +0 -0
  2. .gitignore +92 -0
  3. generate_hits_info.py +65 -0
  4. hits_info.py +857 -0
  5. retrieve_results/.DS_Store +0 -0
.DS_Store DELETED
Binary file (6.15 kB)
 
.gitignore ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # General
2
+ .DS_Store
3
+ *.swp
4
+ *.swo
5
+ *~
6
+ Thumbs.db
7
+ ehthumbs.db
8
+ Desktop.ini
9
+
10
+ # OS-specific
11
+ **/.DS_Store
12
+ **/Thumbs.db
13
+
14
+ # IDE specific
15
+ .vscode/
16
+ .idea/
17
+ *.suo
18
+ *.ntvs*
19
+ *.njsproj
20
+ *.sln
21
+ *.sw?
22
+
23
+ # Logs and databases
24
+ *.log
25
+ *.sql
26
+ *.sqlite
27
+
28
+ # Dependency directories
29
+ node_modules/
30
+ bower_components/
31
+ jspm_packages/
32
+ .pnp
33
+ .pnp.js
34
+
35
+ # Testing
36
+ coverage/
37
+ *.lcov
38
+
39
+ # Production
40
+ build/
41
+ dist/
42
+ out/
43
+ .next/
44
+ .serverless/
45
+
46
+ # Debug
47
+ npm-debug.log*
48
+ yarn-debug.log*
49
+ yarn-error.log*
50
+ .pnpm-debug.log*
51
+
52
+ # Local environment files
53
+ .env
54
+ .env.local
55
+ .env.development
56
+ .env.test
57
+ .env.production
58
+ .env*.local
59
+
60
+ # Editor directories and files
61
+ .idea
62
+ .vscode
63
+ *.suo
64
+ *.ntvs*
65
+ *.njsproj
66
+ *.sln
67
+ *.sw?
68
+
69
+ # Package manager specific
70
+ package-lock.json
71
+ yarn.lock
72
+ pnpm-lock.yaml
73
+
74
+ # Compiled source
75
+ *.com
76
+ *.class
77
+ *.dll
78
+ *.exe
79
+ *.o
80
+ *.so
81
+ *.pyc
82
+ __pycache__/
83
+
84
+ # Archives
85
+ *.7z
86
+ *.dmg
87
+ *.gz
88
+ *.iso
89
+ *.jar
90
+ *.rar
91
+ *.tar
92
+ *.zip
generate_hits_info.py ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import hashlib
3
+ import json
4
+ from pathlib import Path
5
+
6
+ def compute_md5(file_path: str) -> str:
7
+ """Compute MD5 hash of a file."""
8
+ hash_md5 = hashlib.md5()
9
+ with open(file_path, "rb") as f:
10
+ for chunk in iter(lambda: f.read(4096), b""):
11
+ hash_md5.update(chunk)
12
+ return hash_md5.hexdigest()
13
+
14
+ def extract_dataset_name(filename: str) -> str:
15
+ """
16
+ Extracts dataset name from filename.
17
+ Example: "retrieve_results_dl19_top100.jsonl" → "dl19"
18
+ """
19
+ name = filename.replace("retrieve_results_", "")
20
+ parts = name.split("_top100")
21
+
22
+ return parts[0]
23
+
24
+ def get_file_info(root_dir: str) -> dict:
25
+ """
26
+ Generate HITS_INFO structure with MD5 and size for all JSONL/TXT files.
27
+ Now uses just the filename as the key (no folder paths).
28
+ """
29
+ hits_info = {}
30
+ root_path = Path(root_dir)
31
+
32
+ for ext in ("*.jsonl", "*.txt"):
33
+ for file_path in root_path.rglob(ext):
34
+ # Get just the filename (no path)
35
+ filename = file_path.name
36
+ dataset_name = extract_dataset_name(filename)
37
+
38
+ if file_path.suffix.lower() == '.jsonl':
39
+ description = f"Top-100 BM25 Results for the {dataset_name} task. (Cached JSONL format)"
40
+ else: # .txt
41
+ description = f"Top-100 BM25 Results for the {dataset_name} task. (TREC format)"
42
+
43
+ hits_info[filename] = {
44
+ "description": description,
45
+ "urls": [f"https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/{filename}"],
46
+ "md5": compute_md5(file_path),
47
+ "size (bytes)": os.path.getsize(file_path),
48
+ "downloaded": False
49
+ }
50
+
51
+ return hits_info
52
+
53
+ if __name__ == "__main__":
54
+ FOLDER_PATH = "retrieve_results/BM25/"
55
+
56
+ hits_info = get_file_info(FOLDER_PATH)
57
+
58
+ output_file = "hits_info.py"
59
+ with open(output_file, "w") as f:
60
+ f.write("HITS_INFO = ")
61
+ json_str = json.dumps(hits_info, indent=4)
62
+ json_str = json_str.replace('false', 'False')
63
+ f.write(json_str)
64
+
65
+ print(f"Successfully generated {output_file} with {len(hits_info)} entries.")
hits_info.py ADDED
@@ -0,0 +1,857 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ HITS_INFO = {
2
+ "retrieve_results_mrtydi-bn_top100.jsonl": {
3
+ "description": "Top-100 BM25 Results for the mrtydi-bn task. (Cached JSONL format)",
4
+ "urls": [
5
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_mrtydi-bn_top100.jsonl"
6
+ ],
7
+ "md5": "294a0a102a04bcfcccc295fea8dc2453",
8
+ "size (bytes)": 29654299,
9
+ "downloaded": False
10
+ },
11
+ "retrieve_results_mrtydi-th_top100.jsonl": {
12
+ "description": "Top-100 BM25 Results for the mrtydi-th task. (Cached JSONL format)",
13
+ "urls": [
14
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_mrtydi-th_top100.jsonl"
15
+ ],
16
+ "md5": "fe7e2756d1dac6cb5322bdd1e49381c7",
17
+ "size (bytes)": 85027395,
18
+ "downloaded": False
19
+ },
20
+ "retrieve_results_mrtydi-fi_top100.jsonl": {
21
+ "description": "Top-100 BM25 Results for the mrtydi-fi task. (Cached JSONL format)",
22
+ "urls": [
23
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_mrtydi-fi_top100.jsonl"
24
+ ],
25
+ "md5": "dab2c1a58eb9a8ce641267e50e36f05a",
26
+ "size (bytes)": 62363700,
27
+ "downloaded": False
28
+ },
29
+ "retrieve_results_msmarco-v2.1-doc-segmented.bm25.rag24.researchy-dev_top100.jsonl": {
30
+ "description": "Top-100 BM25 Results for the msmarco-v2.1-doc-segmented.bm25.rag24.researchy-dev task. (Cached JSONL format)",
31
+ "urls": [
32
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_msmarco-v2.1-doc-segmented.bm25.rag24.researchy-dev_top100.jsonl"
33
+ ],
34
+ "md5": "41ff53ef4235f94924c75bb35f46f5f7",
35
+ "size (bytes)": 141212740,
36
+ "downloaded": False
37
+ },
38
+ "retrieve_results_cqadupstack-wordpress_top100.jsonl": {
39
+ "description": "Top-100 BM25 Results for the cqadupstack-wordpress task. (Cached JSONL format)",
40
+ "urls": [
41
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_cqadupstack-wordpress_top100.jsonl"
42
+ ],
43
+ "md5": "aed36a463250a869c85d5e882403fb29",
44
+ "size (bytes)": 107076109,
45
+ "downloaded": False
46
+ },
47
+ "retrieve_results_cqadupstack-webmasters_top100.jsonl": {
48
+ "description": "Top-100 BM25 Results for the cqadupstack-webmasters task. (Cached JSONL format)",
49
+ "urls": [
50
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_cqadupstack-webmasters_top100.jsonl"
51
+ ],
52
+ "md5": "a9dfc403907401ff556513f18ecb2699",
53
+ "size (bytes)": 58123597,
54
+ "downloaded": False
55
+ },
56
+ "retrieve_results_nfc_top100.jsonl": {
57
+ "description": "Top-100 BM25 Results for the nfc task. (Cached JSONL format)",
58
+ "urls": [
59
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_nfc_top100.jsonl"
60
+ ],
61
+ "md5": "2ff04cad601f90019af293a3737debaf",
62
+ "size (bytes)": 41107514,
63
+ "downloaded": False
64
+ },
65
+ "retrieve_results_touche_top100.jsonl": {
66
+ "description": "Top-100 BM25 Results for the touche task. (Cached JSONL format)",
67
+ "urls": [
68
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_touche_top100.jsonl"
69
+ ],
70
+ "md5": "8cf637e626a01c5581525b4cf1536e17",
71
+ "size (bytes)": 20357605,
72
+ "downloaded": False
73
+ },
74
+ "retrieve_results_cqadupstack-gaming_top100.jsonl": {
75
+ "description": "Top-100 BM25 Results for the cqadupstack-gaming task. (Cached JSONL format)",
76
+ "urls": [
77
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_cqadupstack-gaming_top100.jsonl"
78
+ ],
79
+ "md5": "cea6ff1ed9b92c4783e0be43127df241",
80
+ "size (bytes)": 122178091,
81
+ "downloaded": False
82
+ },
83
+ "retrieve_results_climate-fever_top100.jsonl": {
84
+ "description": "Top-100 BM25 Results for the climate-fever task. (Cached JSONL format)",
85
+ "urls": [
86
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_climate-fever_top100.jsonl"
87
+ ],
88
+ "md5": "10408c203a3583c378123a3b2f84da95",
89
+ "size (bytes)": 267885684,
90
+ "downloaded": False
91
+ },
92
+ "retrieve_results_mrtydi-ru_top100.jsonl": {
93
+ "description": "Top-100 BM25 Results for the mrtydi-ru task. (Cached JSONL format)",
94
+ "urls": [
95
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_mrtydi-ru_top100.jsonl"
96
+ ],
97
+ "md5": "39d2f399ccf62f751fdcb01827f70b17",
98
+ "size (bytes)": 174101743,
99
+ "downloaded": False
100
+ },
101
+ "retrieve_results_dl19_top100.jsonl": {
102
+ "description": "Top-100 BM25 Results for the dl19 task. (Cached JSONL format)",
103
+ "urls": [
104
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_dl19_top100.jsonl"
105
+ ],
106
+ "md5": "518ab9f821fb74d862589d1d141c208e",
107
+ "size (bytes)": 2000369,
108
+ "downloaded": False
109
+ },
110
+ "retrieve_results_mrtydi-sw_top100.jsonl": {
111
+ "description": "Top-100 BM25 Results for the mrtydi-sw task. (Cached JSONL format)",
112
+ "urls": [
113
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_mrtydi-sw_top100.jsonl"
114
+ ],
115
+ "md5": "ce69ca529b6d1aa070d1616f3eeef09e",
116
+ "size (bytes)": 29085994,
117
+ "downloaded": False
118
+ },
119
+ "retrieve_results_fiqa_top100.jsonl": {
120
+ "description": "Top-100 BM25 Results for the fiqa task. (Cached JSONL format)",
121
+ "urls": [
122
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_fiqa_top100.jsonl"
123
+ ],
124
+ "md5": "ef4d911755404d37ed66e9eb8807c616",
125
+ "size (bytes)": 117475891,
126
+ "downloaded": False
127
+ },
128
+ "retrieve_results_bioasq_top100.jsonl": {
129
+ "description": "Top-100 BM25 Results for the bioasq task. (Cached JSONL format)",
130
+ "urls": [
131
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_bioasq_top100.jsonl"
132
+ ],
133
+ "md5": "2ca4865612e6bf422c9c6b6007de108e",
134
+ "size (bytes)": 103944754,
135
+ "downloaded": False
136
+ },
137
+ "retrieve_results_covid_top100.jsonl": {
138
+ "description": "Top-100 BM25 Results for the covid task. (Cached JSONL format)",
139
+ "urls": [
140
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_covid_top100.jsonl"
141
+ ],
142
+ "md5": "7dd70b911afc40647c37580e2f17a27f",
143
+ "size (bytes)": 8779956,
144
+ "downloaded": False
145
+ },
146
+ "retrieve_results_mrtydi-ja_top100.jsonl": {
147
+ "description": "Top-100 BM25 Results for the mrtydi-ja task. (Cached JSONL format)",
148
+ "urls": [
149
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_mrtydi-ja_top100.jsonl"
150
+ ],
151
+ "md5": "e8a777b9abbde85046c4966e994a9729",
152
+ "size (bytes)": 92917724,
153
+ "downloaded": False
154
+ },
155
+ "retrieve_results_mrtydi-en_top100.jsonl": {
156
+ "description": "Top-100 BM25 Results for the mrtydi-en task. (Cached JSONL format)",
157
+ "urls": [
158
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_mrtydi-en_top100.jsonl"
159
+ ],
160
+ "md5": "921e209176a1154dfaf6aa998cd15f7c",
161
+ "size (bytes)": 57002215,
162
+ "downloaded": False
163
+ },
164
+ "retrieve_results_cqadupstack-mathematica_top100.jsonl": {
165
+ "description": "Top-100 BM25 Results for the cqadupstack-mathematica task. (Cached JSONL format)",
166
+ "urls": [
167
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_cqadupstack-mathematica_top100.jsonl"
168
+ ],
169
+ "md5": "369d6f978ba55e57b4c50f725e9254e5",
170
+ "size (bytes)": 142684830,
171
+ "downloaded": False
172
+ },
173
+ "retrieve_results_cqadupstack-programmers_top100.jsonl": {
174
+ "description": "Top-100 BM25 Results for the cqadupstack-programmers task. (Cached JSONL format)",
175
+ "urls": [
176
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_cqadupstack-programmers_top100.jsonl"
177
+ ],
178
+ "md5": "9eed4b404d7dec8481c74c0c4508a4c2",
179
+ "size (bytes)": 149649753,
180
+ "downloaded": False
181
+ },
182
+ "retrieve_results_dl22_top100.jsonl": {
183
+ "description": "Top-100 BM25 Results for the dl22 task. (Cached JSONL format)",
184
+ "urls": [
185
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_dl22_top100.jsonl"
186
+ ],
187
+ "md5": "08322ee30bf084d1309f5c5a515f2f18",
188
+ "size (bytes)": 3021942,
189
+ "downloaded": False
190
+ },
191
+ "retrieve_results_signal_top100.jsonl": {
192
+ "description": "Top-100 BM25 Results for the signal task. (Cached JSONL format)",
193
+ "urls": [
194
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_signal_top100.jsonl"
195
+ ],
196
+ "md5": "7db7e8b2010fa80cc566811daad2604f",
197
+ "size (bytes)": 2223388,
198
+ "downloaded": False
199
+ },
200
+ "retrieve_results_arguana_top100.jsonl": {
201
+ "description": "Top-100 BM25 Results for the arguana task. (Cached JSONL format)",
202
+ "urls": [
203
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_arguana_top100.jsonl"
204
+ ],
205
+ "md5": "5ef4dbed55808d06b99e8cf21d40136e",
206
+ "size (bytes)": 266144931,
207
+ "downloaded": False
208
+ },
209
+ "retrieve_results_cqadupstack-english_top100.jsonl": {
210
+ "description": "Top-100 BM25 Results for the cqadupstack-english task. (Cached JSONL format)",
211
+ "urls": [
212
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_cqadupstack-english_top100.jsonl"
213
+ ],
214
+ "md5": "f1d612e6ffc3e94ddbac39a24ece6f5f",
215
+ "size (bytes)": 128587175,
216
+ "downloaded": False
217
+ },
218
+ "retrieve_results_cqadupstack-android_top100.jsonl": {
219
+ "description": "Top-100 BM25 Results for the cqadupstack-android task. (Cached JSONL format)",
220
+ "urls": [
221
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_cqadupstack-android_top100.jsonl"
222
+ ],
223
+ "md5": "696af42d0e0937976cbd4739c073cf1b",
224
+ "size (bytes)": 68682044,
225
+ "downloaded": False
226
+ },
227
+ "retrieve_results_noveleval_top100.jsonl": {
228
+ "description": "Top-100 BM25 Results for the noveleval task. (Cached JSONL format)",
229
+ "urls": [
230
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_noveleval_top100.jsonl"
231
+ ],
232
+ "md5": "96b9e6bc7e881122ab11a94656da816e",
233
+ "size (bytes)": 417977,
234
+ "downloaded": False
235
+ },
236
+ "retrieve_results_mrtydi-ko_top100.jsonl": {
237
+ "description": "Top-100 BM25 Results for the mrtydi-ko task. (Cached JSONL format)",
238
+ "urls": [
239
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_mrtydi-ko_top100.jsonl"
240
+ ],
241
+ "md5": "9eefab0c6ee9a5a5155f6d1e48d8bb19",
242
+ "size (bytes)": 32125840,
243
+ "downloaded": False
244
+ },
245
+ "retrieve_results_scidocs_top100.jsonl": {
246
+ "description": "Top-100 BM25 Results for the scidocs task. (Cached JSONL format)",
247
+ "urls": [
248
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_scidocs_top100.jsonl"
249
+ ],
250
+ "md5": "7e2969262e7cf6c81a201bf5ba5a1120",
251
+ "size (bytes)": 838406407,
252
+ "downloaded": False
253
+ },
254
+ "retrieve_results_robust04_top100.jsonl": {
255
+ "description": "Top-100 BM25 Results for the robust04 task. (Cached JSONL format)",
256
+ "urls": [
257
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_robust04_top100.jsonl"
258
+ ],
259
+ "md5": "fbb79b3445fa68fac760452abab8785d",
260
+ "size (bytes)": 246610765,
261
+ "downloaded": False
262
+ },
263
+ "retrieve_results_cqadupstack-physics_top100.jsonl": {
264
+ "description": "Top-100 BM25 Results for the cqadupstack-physics task. (Cached JSONL format)",
265
+ "urls": [
266
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_cqadupstack-physics_top100.jsonl"
267
+ ],
268
+ "md5": "930e548083b57477346dbd715c7053b3",
269
+ "size (bytes)": 145999977,
270
+ "downloaded": False
271
+ },
272
+ "retrieve_results_dl23_top100.jsonl": {
273
+ "description": "Top-100 BM25 Results for the dl23 task. (Cached JSONL format)",
274
+ "urls": [
275
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_dl23_top100.jsonl"
276
+ ],
277
+ "md5": "4a2e77e758c7e8ffc8383940142b2b93",
278
+ "size (bytes)": 4450110,
279
+ "downloaded": False
280
+ },
281
+ "retrieve_results_mrtydi-te_top100.jsonl": {
282
+ "description": "Top-100 BM25 Results for the mrtydi-te task. (Cached JSONL format)",
283
+ "urls": [
284
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_mrtydi-te_top100.jsonl"
285
+ ],
286
+ "md5": "4c77f832c93767a4b6934e12e7d901f0",
287
+ "size (bytes)": 175158316,
288
+ "downloaded": False
289
+ },
290
+ "retrieve_results_nq_top100.jsonl": {
291
+ "description": "Top-100 BM25 Results for the nq task. (Cached JSONL format)",
292
+ "urls": [
293
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_nq_top100.jsonl"
294
+ ],
295
+ "md5": "b720f4e599d87b8a99fe62bfe6c34eed",
296
+ "size (bytes)": 294361164,
297
+ "downloaded": False
298
+ },
299
+ "retrieve_results_dl21_top100.jsonl": {
300
+ "description": "Top-100 BM25 Results for the dl21 task. (Cached JSONL format)",
301
+ "urls": [
302
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_dl21_top100.jsonl"
303
+ ],
304
+ "md5": "6ca5e405c55fc2280d66eb0afc7416f5",
305
+ "size (bytes)": 2140373,
306
+ "downloaded": False
307
+ },
308
+ "retrieve_results_scifact_top100.jsonl": {
309
+ "description": "Top-100 BM25 Results for the scifact task. (Cached JSONL format)",
310
+ "urls": [
311
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_scifact_top100.jsonl"
312
+ ],
313
+ "md5": "f06e6849a06377b8439822fca08ebb9d",
314
+ "size (bytes)": 54195908,
315
+ "downloaded": False
316
+ },
317
+ "retrieve_results_msmarco-v2.1-doc-segmented.bm25.rag24.raggy-dev_top100.jsonl": {
318
+ "description": "Top-100 BM25 Results for the msmarco-v2.1-doc-segmented.bm25.rag24.raggy-dev task. (Cached JSONL format)",
319
+ "urls": [
320
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_msmarco-v2.1-doc-segmented.bm25.rag24.raggy-dev_top100.jsonl"
321
+ ],
322
+ "md5": "ff8a8db2180bc628115d678135179a21",
323
+ "size (bytes)": 26911601,
324
+ "downloaded": False
325
+ },
326
+ "retrieve_results_quora_top100.jsonl": {
327
+ "description": "Top-100 BM25 Results for the quora task. (Cached JSONL format)",
328
+ "urls": [
329
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_quora_top100.jsonl"
330
+ ],
331
+ "md5": "2a71a192854143af0607ab8c44d20a42",
332
+ "size (bytes)": 181487926,
333
+ "downloaded": False
334
+ },
335
+ "retrieve_results_dl20_top100.jsonl": {
336
+ "description": "Top-100 BM25 Results for the dl20 task. (Cached JSONL format)",
337
+ "urls": [
338
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_dl20_top100.jsonl"
339
+ ],
340
+ "md5": "3b6397f50fd78229e8d733243745a6d4",
341
+ "size (bytes)": 2528494,
342
+ "downloaded": False
343
+ },
344
+ "retrieve_results_fever_top100.jsonl": {
345
+ "description": "Top-100 BM25 Results for the fever task. (Cached JSONL format)",
346
+ "urls": [
347
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_fever_top100.jsonl"
348
+ ],
349
+ "md5": "3724951896f46f9e89766796aedd80db",
350
+ "size (bytes)": 733246613,
351
+ "downloaded": False
352
+ },
353
+ "retrieve_results_dbpedia_top100.jsonl": {
354
+ "description": "Top-100 BM25 Results for the dbpedia task. (Cached JSONL format)",
355
+ "urls": [
356
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_dbpedia_top100.jsonl"
357
+ ],
358
+ "md5": "d62eaf6a0c1293ce66469a8c49a703df",
359
+ "size (bytes)": 24647913,
360
+ "downloaded": False
361
+ },
362
+ "retrieve_results_cqadupstack-gis_top100.jsonl": {
363
+ "description": "Top-100 BM25 Results for the cqadupstack-gis task. (Cached JSONL format)",
364
+ "urls": [
365
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_cqadupstack-gis_top100.jsonl"
366
+ ],
367
+ "md5": "396a545732dcb78143fae2a15a2668ab",
368
+ "size (bytes)": 138960373,
369
+ "downloaded": False
370
+ },
371
+ "retrieve_results_cqadupstack-stats_top100.jsonl": {
372
+ "description": "Top-100 BM25 Results for the cqadupstack-stats task. (Cached JSONL format)",
373
+ "urls": [
374
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_cqadupstack-stats_top100.jsonl"
375
+ ],
376
+ "md5": "97669270c39c4221d6ad8a4f585bb6e1",
377
+ "size (bytes)": 107215152,
378
+ "downloaded": False
379
+ },
380
+ "retrieve_results_cqadupstack-tex_top100.jsonl": {
381
+ "description": "Top-100 BM25 Results for the cqadupstack-tex task. (Cached JSONL format)",
382
+ "urls": [
383
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_cqadupstack-tex_top100.jsonl"
384
+ ],
385
+ "md5": "cbe1b61e4b9edc8d8fd70a99cf42dc31",
386
+ "size (bytes)": 640157648,
387
+ "downloaded": False
388
+ },
389
+ "retrieve_results_news_top100.jsonl": {
390
+ "description": "Top-100 BM25 Results for the news task. (Cached JSONL format)",
391
+ "urls": [
392
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_news_top100.jsonl"
393
+ ],
394
+ "md5": "3fa0063db9ba1dcfc5b527a062d41720",
395
+ "size (bytes)": 41110970,
396
+ "downloaded": False
397
+ },
398
+ "retrieve_results_mrtydi-ar_top100.jsonl": {
399
+ "description": "Top-100 BM25 Results for the mrtydi-ar task. (Cached JSONL format)",
400
+ "urls": [
401
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_mrtydi-ar_top100.jsonl"
402
+ ],
403
+ "md5": "930a920415eba8311b95fe9a2223b4c6",
404
+ "size (bytes)": 293847179,
405
+ "downloaded": False
406
+ },
407
+ "retrieve_results_mrtydi-id_top100.jsonl": {
408
+ "description": "Top-100 BM25 Results for the mrtydi-id task. (Cached JSONL format)",
409
+ "urls": [
410
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_mrtydi-id_top100.jsonl"
411
+ ],
412
+ "md5": "bec6773759857dba46938b5e3ff35beb",
413
+ "size (bytes)": 51144356,
414
+ "downloaded": False
415
+ },
416
+ "retrieve_results_cqadupstack-unix_top100.jsonl": {
417
+ "description": "Top-100 BM25 Results for the cqadupstack-unix task. (Cached JSONL format)",
418
+ "urls": [
419
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_cqadupstack-unix_top100.jsonl"
420
+ ],
421
+ "md5": "2cfba65981272eb2ee75add8c4360636",
422
+ "size (bytes)": 179463636,
423
+ "downloaded": False
424
+ },
425
+ "retrieve_results_hotpotqa_top100.jsonl": {
426
+ "description": "Top-100 BM25 Results for the hotpotqa task. (Cached JSONL format)",
427
+ "urls": [
428
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/retrieve_results_hotpotqa_top100.jsonl"
429
+ ],
430
+ "md5": "b12a10d2c98dccf9e3aea021754fb00d",
431
+ "size (bytes)": 464251585,
432
+ "downloaded": False
433
+ },
434
+ "trec_results_signal_top100.txt": {
435
+ "description": "Top-100 BM25 Results for the trec_results_signal task. (TREC format)",
436
+ "urls": [
437
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_signal_top100.txt"
438
+ ],
439
+ "md5": "b6d6e20632d48359f0b61110f352fc5c",
440
+ "size (bytes)": 863553,
441
+ "downloaded": False
442
+ },
443
+ "trec_results_cqadupstack-gis_top100.txt": {
444
+ "description": "Top-100 BM25 Results for the trec_results_cqadupstack-gis task. (TREC format)",
445
+ "urls": [
446
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_cqadupstack-gis_top100.txt"
447
+ ],
448
+ "md5": "4b7c9d37b6be29154449feeaa117906a",
449
+ "size (bytes)": 3984051,
450
+ "downloaded": False
451
+ },
452
+ "trec_results_covid_top100.txt": {
453
+ "description": "Top-100 BM25 Results for the trec_results_covid task. (TREC format)",
454
+ "urls": [
455
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_covid_top100.txt"
456
+ ],
457
+ "md5": "ba0360f2abe60abfe361665942fbdc4b",
458
+ "size (bytes)": 204370,
459
+ "downloaded": False
460
+ },
461
+ "trec_results_dl20_top100.txt": {
462
+ "description": "Top-100 BM25 Results for the trec_results_dl20 task. (TREC format)",
463
+ "urls": [
464
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_dl20_top100.txt"
465
+ ],
466
+ "md5": "63d07d941edc44430b3ddec3a65a0433",
467
+ "size (bytes)": 240316,
468
+ "downloaded": False
469
+ },
470
+ "trec_results_nq_top100.txt": {
471
+ "description": "Top-100 BM25 Results for the trec_results_nq task. (TREC format)",
472
+ "urls": [
473
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_nq_top100.txt"
474
+ ],
475
+ "md5": "fcb0baf3884c39e2405a643c19dec246",
476
+ "size (bytes)": 18018629,
477
+ "downloaded": False
478
+ },
479
+ "trec_results_mrtydi-ru_top100.txt": {
480
+ "description": "Top-100 BM25 Results for the trec_results_mrtydi-ru task. (TREC format)",
481
+ "urls": [
482
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_mrtydi-ru_top100.txt"
483
+ ],
484
+ "md5": "d2e68c75b87ec5f79656847df448718a",
485
+ "size (bytes)": 3828494,
486
+ "downloaded": False
487
+ },
488
+ "trec_results_fever_top100.txt": {
489
+ "description": "Top-100 BM25 Results for the trec_results_fever task. (TREC format)",
490
+ "urls": [
491
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_fever_top100.txt"
492
+ ],
493
+ "md5": "e7256c9b9b50edc20ed88e7c3ad25b11",
494
+ "size (bytes)": 41233134,
495
+ "downloaded": False
496
+ },
497
+ "trec_results_cqadupstack-english_top100.txt": {
498
+ "description": "Top-100 BM25 Results for the trec_results_cqadupstack-english task. (TREC format)",
499
+ "urls": [
500
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_cqadupstack-english_top100.txt"
501
+ ],
502
+ "md5": "24486d2f7b00cd8e3d958f35b803c7fc",
503
+ "size (bytes)": 7164087,
504
+ "downloaded": False
505
+ },
506
+ "trec_results_cqadupstack-webmasters_top100.txt": {
507
+ "description": "Top-100 BM25 Results for the trec_results_cqadupstack-webmasters task. (TREC format)",
508
+ "urls": [
509
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_cqadupstack-webmasters_top100.txt"
510
+ ],
511
+ "md5": "814f9d186f68dc3839bceb6467159272",
512
+ "size (bytes)": 2260397,
513
+ "downloaded": False
514
+ },
515
+ "trec_results_msmarco-v2.1-doc-segmented.bm25.rag24.raggy-dev_top100.txt": {
516
+ "description": "Top-100 BM25 Results for the trec_results_msmarco-v2.1-doc-segmented.bm25.rag24.raggy-dev task. (TREC format)",
517
+ "urls": [
518
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_msmarco-v2.1-doc-segmented.bm25.rag24.raggy-dev_top100.txt"
519
+ ],
520
+ "md5": "2e332446044fc6fe1197c02ddaebaab8",
521
+ "size (bytes)": 910820,
522
+ "downloaded": False
523
+ },
524
+ "trec_results_arguana_top100.txt": {
525
+ "description": "Top-100 BM25 Results for the trec_results_arguana task. (TREC format)",
526
+ "urls": [
527
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_arguana_top100.txt"
528
+ ],
529
+ "md5": "38a8cf139821364ab76bd8c1515f7981",
530
+ "size (bytes)": 14292057,
531
+ "downloaded": False
532
+ },
533
+ "trec_results_cqadupstack-wordpress_top100.txt": {
534
+ "description": "Top-100 BM25 Results for the trec_results_cqadupstack-wordpress task. (TREC format)",
535
+ "urls": [
536
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_cqadupstack-wordpress_top100.txt"
537
+ ],
538
+ "md5": "796aeaa05566c0dd3f6d205b46d270ff",
539
+ "size (bytes)": 2469227,
540
+ "downloaded": False
541
+ },
542
+ "trec_results_cqadupstack-stats_top100.txt": {
543
+ "description": "Top-100 BM25 Results for the trec_results_cqadupstack-stats task. (TREC format)",
544
+ "urls": [
545
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_cqadupstack-stats_top100.txt"
546
+ ],
547
+ "md5": "3421d522d8889a32d3879171dd3e4597",
548
+ "size (bytes)": 2935440,
549
+ "downloaded": False
550
+ },
551
+ "trec_results_dl22_top100.txt": {
552
+ "description": "Top-100 BM25 Results for the trec_results_dl22 task. (TREC format)",
553
+ "urls": [
554
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_dl22_top100.txt"
555
+ ],
556
+ "md5": "4e93d4a41ee9343fda24887534cc0943",
557
+ "size (bytes)": 503425,
558
+ "downloaded": False
559
+ },
560
+ "trec_results_mrtydi-ar_top100.txt": {
561
+ "description": "Top-100 BM25 Results for the trec_results_mrtydi-ar task. (TREC format)",
562
+ "urls": [
563
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_mrtydi-ar_top100.txt"
564
+ ],
565
+ "md5": "9e85d4b8ee967da10f39e7f574bfa62e",
566
+ "size (bytes)": 5005804,
567
+ "downloaded": False
568
+ },
569
+ "trec_results_cqadupstack-gaming_top100.txt": {
570
+ "description": "Top-100 BM25 Results for the trec_results_cqadupstack-gaming task. (TREC format)",
571
+ "urls": [
572
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_cqadupstack-gaming_top100.txt"
573
+ ],
574
+ "md5": "fdb6d6c2c33405bd24469b8040f1d616",
575
+ "size (bytes)": 7289194,
576
+ "downloaded": False
577
+ },
578
+ "trec_results_mrtydi-bn_top100.txt": {
579
+ "description": "Top-100 BM25 Results for the trec_results_mrtydi-bn task. (TREC format)",
580
+ "urls": [
581
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_mrtydi-bn_top100.txt"
582
+ ],
583
+ "md5": "e8503eb401e35ce3b2d4db981dba7a48",
584
+ "size (bytes)": 519641,
585
+ "downloaded": False
586
+ },
587
+ "trec_results_climate-fever_top100.txt": {
588
+ "description": "Top-100 BM25 Results for the trec_results_climate-fever task. (TREC format)",
589
+ "urls": [
590
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_climate-fever_top100.txt"
591
+ ],
592
+ "md5": "80084f78df683d026065a225d2209be7",
593
+ "size (bytes)": 9388594,
594
+ "downloaded": False
595
+ },
596
+ "trec_results_cqadupstack-android_top100.txt": {
597
+ "description": "Top-100 BM25 Results for the trec_results_cqadupstack-android task. (TREC format)",
598
+ "urls": [
599
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_cqadupstack-android_top100.txt"
600
+ ],
601
+ "md5": "35055a77f8465c027c6d67a8cb9004da",
602
+ "size (bytes)": 3123254,
603
+ "downloaded": False
604
+ },
605
+ "trec_results_hotpotqa_top100.txt": {
606
+ "description": "Top-100 BM25 Results for the trec_results_hotpotqa task. (TREC format)",
607
+ "urls": [
608
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_hotpotqa_top100.txt"
609
+ ],
610
+ "md5": "2ab679fd90dac5c1addec01d3b883ab9",
611
+ "size (bytes)": 49529939,
612
+ "downloaded": False
613
+ },
614
+ "trec_results_mrtydi-en_top100.txt": {
615
+ "description": "Top-100 BM25 Results for the trec_results_mrtydi-en task. (TREC format)",
616
+ "urls": [
617
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_mrtydi-en_top100.txt"
618
+ ],
619
+ "md5": "719cda9d51616b5685f7e71dc5a83244",
620
+ "size (bytes)": 3623890,
621
+ "downloaded": False
622
+ },
623
+ "trec_results_mrtydi-fi_top100.txt": {
624
+ "description": "Top-100 BM25 Results for the trec_results_mrtydi-fi task. (TREC format)",
625
+ "urls": [
626
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_mrtydi-fi_top100.txt"
627
+ ],
628
+ "md5": "1ad7dee723cb0a3f2ce596c37e715180",
629
+ "size (bytes)": 4667037,
630
+ "downloaded": False
631
+ },
632
+ "trec_results_mrtydi-ja_top100.txt": {
633
+ "description": "Top-100 BM25 Results for the trec_results_mrtydi-ja task. (TREC format)",
634
+ "urls": [
635
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_mrtydi-ja_top100.txt"
636
+ ],
637
+ "md5": "f9cf41ccbd769dfa156058fcd1150e56",
638
+ "size (bytes)": 3441734,
639
+ "downloaded": False
640
+ },
641
+ "trec_results_msmarco-v2.1-doc-segmented.bm25.rag24.researchy-dev_top100.txt": {
642
+ "description": "Top-100 BM25 Results for the trec_results_msmarco-v2.1-doc-segmented.bm25.rag24.researchy-dev task. (TREC format)",
643
+ "urls": [
644
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_msmarco-v2.1-doc-segmented.bm25.rag24.researchy-dev_top100.txt"
645
+ ],
646
+ "md5": "f90bf6b4a37902cd34ce1113886fd209",
647
+ "size (bytes)": 4496144,
648
+ "downloaded": False
649
+ },
650
+ "trec_results_nfc_top100.txt": {
651
+ "description": "Top-100 BM25 Results for the trec_results_nfc task. (TREC format)",
652
+ "urls": [
653
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_nfc_top100.txt"
654
+ ],
655
+ "md5": "c4dbb9a490bb88b733f6cfa3a98d724b",
656
+ "size (bytes)": 1166597,
657
+ "downloaded": False
658
+ },
659
+ "trec_results_mrtydi-te_top100.txt": {
660
+ "description": "Top-100 BM25 Results for the trec_results_mrtydi-te task. (TREC format)",
661
+ "urls": [
662
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_mrtydi-te_top100.txt"
663
+ ],
664
+ "md5": "07c6d1720f6459ebb50d79da50e245e9",
665
+ "size (bytes)": 2886733,
666
+ "downloaded": False
667
+ },
668
+ "trec_results_robust04_top100.txt": {
669
+ "description": "Top-100 BM25 Results for the trec_results_robust04 task. (TREC format)",
670
+ "urls": [
671
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_robust04_top100.txt"
672
+ ],
673
+ "md5": "ded75d80d494eed03cddfd1e5ad2a85b",
674
+ "size (bytes)": 1260112,
675
+ "downloaded": False
676
+ },
677
+ "trec_results_cqadupstack-tex_top100.txt": {
678
+ "description": "Top-100 BM25 Results for the trec_results_cqadupstack-tex task. (TREC format)",
679
+ "urls": [
680
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_cqadupstack-tex_top100.txt"
681
+ ],
682
+ "md5": "3128ae9e9ef35cad05b05070a89e7b49",
683
+ "size (bytes)": 13319779,
684
+ "downloaded": False
685
+ },
686
+ "trec_results_scidocs_top100.txt": {
687
+ "description": "Top-100 BM25 Results for the trec_results_scidocs task. (TREC format)",
688
+ "urls": [
689
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_scidocs_top100.txt"
690
+ ],
691
+ "md5": "088f68e7dc6e9ed87b6f8332fb8e991e",
692
+ "size (bytes)": 11489211,
693
+ "downloaded": False
694
+ },
695
+ "trec_results_dl21_top100.txt": {
696
+ "description": "Top-100 BM25 Results for the trec_results_dl21 task. (TREC format)",
697
+ "urls": [
698
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_dl21_top100.txt"
699
+ ],
700
+ "md5": "900915b48cbbd25b87f8cf0bfe36496f",
701
+ "size (bytes)": 347951,
702
+ "downloaded": False
703
+ },
704
+ "trec_results_mrtydi-th_top100.txt": {
705
+ "description": "Top-100 BM25 Results for the trec_results_mrtydi-th task. (TREC format)",
706
+ "urls": [
707
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_mrtydi-th_top100.txt"
708
+ ],
709
+ "md5": "efb3dd99d517a6d5ac77c13e520ef97f",
710
+ "size (bytes)": 1578228,
711
+ "downloaded": False
712
+ },
713
+ "trec_results_cqadupstack-physics_top100.txt": {
714
+ "description": "Top-100 BM25 Results for the trec_results_cqadupstack-physics task. (TREC format)",
715
+ "urls": [
716
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_cqadupstack-physics_top100.txt"
717
+ ],
718
+ "md5": "89ecec636608aeacdca363e670ac8ceb",
719
+ "size (bytes)": 4703810,
720
+ "downloaded": False
721
+ },
722
+ "trec_results_scifact_top100.txt": {
723
+ "description": "Top-100 BM25 Results for the trec_results_scifact task. (TREC format)",
724
+ "urls": [
725
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_scifact_top100.txt"
726
+ ],
727
+ "md5": "1a5587d2c68c626ef2fbf6732970a20f",
728
+ "size (bytes)": 1375231,
729
+ "downloaded": False
730
+ },
731
+ "trec_results_mrtydi-ko_top100.txt": {
732
+ "description": "Top-100 BM25 Results for the trec_results_mrtydi-ko task. (TREC format)",
733
+ "urls": [
734
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_mrtydi-ko_top100.txt"
735
+ ],
736
+ "md5": "411efe111aff478c8fac159ebc564186",
737
+ "size (bytes)": 1429961,
738
+ "downloaded": False
739
+ },
740
+ "trec_results_mrtydi-id_top100.txt": {
741
+ "description": "Top-100 BM25 Results for the trec_results_mrtydi-id task. (TREC format)",
742
+ "urls": [
743
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_mrtydi-id_top100.txt"
744
+ ],
745
+ "md5": "4a5b8b122cebc8c6f8a055badc63b186",
746
+ "size (bytes)": 3828870,
747
+ "downloaded": False
748
+ },
749
+ "trec_results_bioasq_top100.txt": {
750
+ "description": "Top-100 BM25 Results for the trec_results_bioasq task. (TREC format)",
751
+ "urls": [
752
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_bioasq_top100.txt"
753
+ ],
754
+ "md5": "800a193907468010314cf60606a5fbf8",
755
+ "size (bytes)": 3361230,
756
+ "downloaded": False
757
+ },
758
+ "trec_results_cqadupstack-unix_top100.txt": {
759
+ "description": "Top-100 BM25 Results for the trec_results_cqadupstack-unix task. (TREC format)",
760
+ "urls": [
761
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_cqadupstack-unix_top100.txt"
762
+ ],
763
+ "md5": "d80fc4bc65e8421b9e570e8afcba518e",
764
+ "size (bytes)": 4870984,
765
+ "downloaded": False
766
+ },
767
+ "trec_results_cqadupstack-programmers_top100.txt": {
768
+ "description": "Top-100 BM25 Results for the trec_results_cqadupstack-programmers task. (TREC format)",
769
+ "urls": [
770
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_cqadupstack-programmers_top100.txt"
771
+ ],
772
+ "md5": "431f47918d3f17e2a9a286c9926d1a66",
773
+ "size (bytes)": 4055299,
774
+ "downloaded": False
775
+ },
776
+ "trec_results_quora_top100.txt": {
777
+ "description": "Top-100 BM25 Results for the trec_results_quora task. (TREC format)",
778
+ "urls": [
779
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_quora_top100.txt"
780
+ ],
781
+ "md5": "862238257e9a9ad1c9ea696a91d8157b",
782
+ "size (bytes)": 46536063,
783
+ "downloaded": False
784
+ },
785
+ "trec_results_touche_top100.txt": {
786
+ "description": "Top-100 BM25 Results for the trec_results_touche task. (TREC format)",
787
+ "urls": [
788
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_touche_top100.txt"
789
+ ],
790
+ "md5": "c84710b86ff1f4f0bb400a37eed0a003",
791
+ "size (bytes)": 371893,
792
+ "downloaded": False
793
+ },
794
+ "trec_results_fiqa_top100.txt": {
795
+ "description": "Top-100 BM25 Results for the trec_results_fiqa task. (TREC format)",
796
+ "urls": [
797
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_fiqa_top100.txt"
798
+ ],
799
+ "md5": "3c97bfcbf5111326af2db37a654ee9a2",
800
+ "size (bytes)": 2900218,
801
+ "downloaded": False
802
+ },
803
+ "trec_results_news_top100.txt": {
804
+ "description": "Top-100 BM25 Results for the trec_results_news task. (TREC format)",
805
+ "urls": [
806
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_news_top100.txt"
807
+ ],
808
+ "md5": "33e2fe3e5cd7332f0933b48516fbbe48",
809
+ "size (bytes)": 390316,
810
+ "downloaded": False
811
+ },
812
+ "trec_results_dl23_top100.txt": {
813
+ "description": "Top-100 BM25 Results for the trec_results_dl23 task. (TREC format)",
814
+ "urls": [
815
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_dl23_top100.txt"
816
+ ],
817
+ "md5": "254d001fdca25786ca6e3c827669a5c6",
818
+ "size (bytes)": 576485,
819
+ "downloaded": False
820
+ },
821
+ "trec_results_mrtydi-sw_top100.txt": {
822
+ "description": "Top-100 BM25 Results for the trec_results_mrtydi-sw task. (TREC format)",
823
+ "urls": [
824
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_mrtydi-sw_top100.txt"
825
+ ],
826
+ "md5": "84b70b2d4b8d3c27c57e9686959d07b5",
827
+ "size (bytes)": 3089950,
828
+ "downloaded": False
829
+ },
830
+ "trec_results_cqadupstack-mathematica_top100.txt": {
831
+ "description": "Top-100 BM25 Results for the trec_results_cqadupstack-mathematica task. (TREC format)",
832
+ "urls": [
833
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_cqadupstack-mathematica_top100.txt"
834
+ ],
835
+ "md5": "75fc390056365466e70c9c53db5eefd6",
836
+ "size (bytes)": 3584611,
837
+ "downloaded": False
838
+ },
839
+ "trec_results_dbpedia_top100.txt": {
840
+ "description": "Top-100 BM25 Results for the trec_results_dbpedia task. (TREC format)",
841
+ "urls": [
842
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_dbpedia_top100.txt"
843
+ ],
844
+ "md5": "1617d0ce1f48d0d52179aafc1176eaf0",
845
+ "size (bytes)": 3229132,
846
+ "downloaded": False
847
+ },
848
+ "trec_results_dl19_top100.txt": {
849
+ "description": "Top-100 BM25 Results for the trec_results_dl19 task. (TREC format)",
850
+ "urls": [
851
+ "https://huggingface.co/datasets/RankLLMData/RankLLM_Data/resolve/main/retrieve_results/BM25/trec_results_dl19_top100.txt"
852
+ ],
853
+ "md5": "4be11ccaf5808bd861b831b1df960907",
854
+ "size (bytes)": 190529,
855
+ "downloaded": False
856
+ }
857
+ }
retrieve_results/.DS_Store DELETED
Binary file (6.15 kB)