From 942cf95b02ba5af70d0401c2c2716a013058804a Mon Sep 17 00:00:00 2001 From: Paul-Edouard Sarlin Date: Fri, 6 Oct 2023 01:35:14 +0200 Subject: [PATCH] Bugfix in homography dataset --- gluefactory/datasets/homographies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gluefactory/datasets/homographies.py b/gluefactory/datasets/homographies.py index 51e0493d..f5a21310 100644 --- a/gluefactory/datasets/homographies.py +++ b/gluefactory/datasets/homographies.py @@ -89,7 +89,7 @@ def _init(self, conf): if not data_dir.exists(): if conf.data_dir == "revisitop1m": logger.info("Downloading the revisitop1m dataset.") - self.download_revisitop1m(data_dir) + self.download_revisitop1m() else: raise FileNotFoundError(data_dir)