From 9b0881c296f5a39a4f6a220c6cf0edcb8c3799a0 Mon Sep 17 00:00:00 2001 From: Lars Kuehmichel Date: Mon, 15 Jan 2024 16:38:17 +0100 Subject: [PATCH] fix ModelNet10 download --- src/datasets/modelnet10.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/datasets/modelnet10.py b/src/datasets/modelnet10.py index 4cc601c..0bad36e 100644 --- a/src/datasets/modelnet10.py +++ b/src/datasets/modelnet10.py @@ -91,7 +91,7 @@ def download(self): print(f"Cleaning up hierarchy...") # structure is now root/ModelNet10/..., remove intermediate ModelNet10 folder - for path in target.glob("archive/*"): + for path in target.glob("ModelNet10/*"): shutil.move(str(path), str(self.root)) shutil.rmtree(str(self.root / "__MACOSX"))