We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdf88b2 commit 7124cd7Copy full SHA for 7124cd7
demo-notebooks/guided-demos/download_mnist_datasets.py
@@ -41,7 +41,6 @@ def download_mnist_dataset(destination_dir):
41
42
43
# Specify the directory where you
44
-script_dir = os.path.dirname(os.path.abspath(__file__))
45
-destination_dir = script_dir + "/mnist_datasets"
+destination_dir = os.path.dirname(os.path.abspath(__file__))
46
47
download_mnist_dataset(destination_dir)
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.dirname(os.path.abspath(__file__) + "/mnist_datasets")
+local_minst_path = os.path.dirname(os.path.abspath(__file__) + "/MNIST/raw")
34
35
print("prior to running the trainer")
36
print("MASTER_ADDR: is ", os.getenv("MASTER_ADDR"))
0 commit comments