We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b693919 commit e7b6454Copy full SHA for e7b6454
CollaborativeCoding/dataloaders/download.py
@@ -130,7 +130,7 @@ def already_downloaded(path):
130
url_test, _, test_md5 = USPS_SOURCE["test"]
131
132
# Using temporary directory ensures temporary files are deleted after use
133
- with TemporaryDirectory() as tmp_dir:
+ with TemporaryDirectory(dir=data_dir) as tmp_dir:
134
train_path = Path(tmp_dir) / "train"
135
test_path = Path(tmp_dir) / "test"
136
0 commit comments