Update run files to include `-msmarco`
Browse filesThe `runs` files here [mmarco/data/google/runs](https://huggingface.co/datasets/unicamp-dl/mmarco/tree/main/data/google/runs) has been renamed to include `-msmarco.txt` instead of `.txt`
mmarco.py
CHANGED
@@ -229,7 +229,7 @@ class MMarco(datasets.GeneratorBasedBuilder):
|
|
229 |
urls = {
|
230 |
"collection": _BASE_URLS["collections"] + self.config.name[5:] + "_collection.tsv",
|
231 |
"queries": _BASE_URLS["queries-dev"] + self.config.name[5:] + "_queries.dev.tsv",
|
232 |
-
"run": _BASE_URLS["runs"] + "run.bm25_" + self.config.name[5:] + ".txt",
|
233 |
}
|
234 |
|
235 |
dl_path = dl_manager.download_and_extract(urls)
|
|
|
229 |
urls = {
|
230 |
"collection": _BASE_URLS["collections"] + self.config.name[5:] + "_collection.tsv",
|
231 |
"queries": _BASE_URLS["queries-dev"] + self.config.name[5:] + "_queries.dev.tsv",
|
232 |
+
"run": _BASE_URLS["runs"] + "run.bm25_" + self.config.name[5:] + "-msmarco.txt",
|
233 |
}
|
234 |
|
235 |
dl_path = dl_manager.download_and_extract(urls)
|