Skip to content

Commit 0ed4cfc

Browse files
committed
refactor: correct path to datasets
1 parent 55455b1 commit 0ed4cfc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

demo-notebooks/guided-demos/mnist_disconnected.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
BATCH_SIZE = 256 if torch.cuda.is_available() else 64
3131
# %%
3232

33-
local_minst_path = os.path.join(PATH_DATASETS, "mnist")
33+
local_minst_path = os.path.dirname(os.path.abspath(__file__) + "/mnist_datasets")
3434

3535
print("prior to running the trainer")
3636
print("MASTER_ADDR: is ", os.getenv("MASTER_ADDR"))
@@ -114,7 +114,7 @@ def configure_optimizers(self):
114114

115115
def prepare_data(self):
116116
# download
117-
print("Downloading MNIST dataset...")
117+
print("Preparing MNIST dataset...")
118118
MNIST(self.data_dir, train=True, download=False)
119119
MNIST(self.data_dir, train=False, download=False)
120120

0 commit comments

Comments
 (0)