We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55455b1 commit 0ed4cfcCopy full SHA for 0ed4cfc
demo-notebooks/guided-demos/mnist_disconnected.py
@@ -30,7 +30,7 @@
30
BATCH_SIZE = 256 if torch.cuda.is_available() else 64
31
# %%
32
33
-local_minst_path = os.path.join(PATH_DATASETS, "mnist")
+local_minst_path = os.path.dirname(os.path.abspath(__file__) + "/mnist_datasets")
34
35
print("prior to running the trainer")
36
print("MASTER_ADDR: is ", os.getenv("MASTER_ADDR"))
@@ -114,7 +114,7 @@ def configure_optimizers(self):
114
115
def prepare_data(self):
116
# download
117
- print("Downloading MNIST dataset...")
+ print("Preparing MNIST dataset...")
118
MNIST(self.data_dir, train=True, download=False)
119
MNIST(self.data_dir, train=False, download=False)
120
0 commit comments