From 3bb06738dd1e0f83b2191995e68bcc9fd567e91e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Pautrat?= Date: Mon, 30 Oct 2023 14:52:43 +0100 Subject: [PATCH] Update ETH3D download link --- gluefactory/datasets/eth3d.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gluefactory/datasets/eth3d.py b/gluefactory/datasets/eth3d.py index ca5e2648..c99485d5 100644 --- a/gluefactory/datasets/eth3d.py +++ b/gluefactory/datasets/eth3d.py @@ -194,7 +194,7 @@ def download_eth3d(self): if tmp_dir.exists(): shutil.rmtree(tmp_dir) tmp_dir.mkdir(exist_ok=True, parents=True) - url_base = "https://cvg-data.inf.ethz.ch/ETH3D_undistorted/" + url_base = "https://cvg-data.inf.ethz.ch/SOLD2_ETH3D_undistorted/" zip_name = "ETH3D_undistorted.zip" zip_path = tmp_dir / zip_name torch.hub.download_url_to_file(url_base + zip_name, zip_path)