From 15821385415feece7a76d1cc8447d8f3f200af70 Mon Sep 17 00:00:00 2001 From: Muennighoff Date: Thu, 12 Sep 2024 15:15:20 -0700 Subject: [PATCH] Add debugging help --- results.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/results.py b/results.py index 5371ad23..264ac0d4 100644 --- a/results.py +++ b/results.py @@ -321,6 +321,8 @@ def _info(self): def _split_generators(self, dl_manager): 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])