File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
demo-notebooks/guided-demos Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,6 @@ def download_mnist_dataset(destination_dir):
41
41
42
42
43
43
# Specify the directory where you
44
- script_dir = os .path .dirname (os .path .abspath (__file__ ))
45
- destination_dir = script_dir + "/mnist_datasets"
44
+ destination_dir = os .path .dirname (os .path .abspath (__file__ ))
46
45
47
46
download_mnist_dataset (destination_dir )
Original file line number Diff line number Diff line change 30
30
BATCH_SIZE = 256 if torch .cuda .is_available () else 64
31
31
# %%
32
32
33
- local_minst_path = os .path .dirname (os .path .abspath (__file__ ) + "/mnist_datasets " )
33
+ local_minst_path = os .path .dirname (os .path .abspath (__file__ ) + "/MNIST/raw " )
34
34
35
35
print ("prior to running the trainer" )
36
36
print ("MASTER_ADDR: is " , os .getenv ("MASTER_ADDR" ))
You can’t perform that action at this time.
0 commit comments