From cdb8c5b32ccabe182972c58a0c9ddd890236ff11 Mon Sep 17 00:00:00 2001 From: Nikita Shulga Date: Tue, 19 Sep 2023 10:12:47 -0700 Subject: [PATCH] Fix `lenet_mnist` download As `-N` and `-O` options are mutually exclusive --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bbe76125ec5..b6757e84f89 100644 --- a/Makefile +++ b/Makefile @@ -82,7 +82,7 @@ download: tar $(TAROPTS) -xzf $(DATADIR)/UrbanSound8K.tar.gz -C ./beginner_source/data/ # Download model for beginner_source/fgsm_tutorial.py - wget -nv -N 'https://docs.google.com/uc?export=download&id=1HJV2nUHJqclXQ8flKvcWmjZ-OU5DGatl' -O $(DATADIR)/lenet_mnist_model.pth + wget -nv 'https://docs.google.com/uc?export=download&id=1HJV2nUHJqclXQ8flKvcWmjZ-OU5DGatl' -O $(DATADIR)/lenet_mnist_model.pth cp $(DATADIR)/lenet_mnist_model.pth ./beginner_source/data/lenet_mnist_model.pth # Download model for advanced_source/dynamic_quantization_tutorial.py