Skip to content

Commit 677c1b6

Browse files
authored
Fix lenet_mnist download (#2564)
As `-N` and `-O` options are mutually exclusive
1 parent 29db287 commit 677c1b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ download:
8282
tar $(TAROPTS) -xzf $(DATADIR)/UrbanSound8K.tar.gz -C ./beginner_source/data/
8383

8484
# Download model for beginner_source/fgsm_tutorial.py
85-
wget -nv -N 'https://docs.google.com/uc?export=download&id=1HJV2nUHJqclXQ8flKvcWmjZ-OU5DGatl' -O $(DATADIR)/lenet_mnist_model.pth
85+
wget -nv 'https://docs.google.com/uc?export=download&id=1HJV2nUHJqclXQ8flKvcWmjZ-OU5DGatl' -O $(DATADIR)/lenet_mnist_model.pth
8686
cp $(DATADIR)/lenet_mnist_model.pth ./beginner_source/data/lenet_mnist_model.pth
8787

8888
# Download model for advanced_source/dynamic_quantization_tutorial.py

0 commit comments

Comments
 (0)