Skip to content

Commit

Permalink
remove local path
Browse files Browse the repository at this point in the history
  • Loading branch information
Samoed committed Sep 13, 2024
1 parent 622334b commit d0ce7b2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions results.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,8 +321,10 @@ def _info(self):
)

def _split_generators(self, dl_manager):
# path_file = dl_manager.download_and_extract(URL)
with open("/home/samoed/Desktop/mteb/mteb-results/paths.json") as f:
path_file = dl_manager.download_and_extract(URL)
# Local debugging help
# with open("/path/to/local/paths.json") as f:
with open(path_file) as f:
files = json.load(f)
downloaded_files = dl_manager.download_and_extract(files[self.config.name])
return [
Expand Down

0 comments on commit d0ce7b2

Please sign in to comment.