From 70f91294d0079f27f1ca3747e35aaa60d2f815bc Mon Sep 17 00:00:00 2001 From: jsxyhelu Date: Tue, 9 Jul 2019 13:35:31 +0800 Subject: [PATCH 1/2] http change to https MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit http://cs.stanford.edu/people/jcjohns/fast-neural-style/models/…… is invalid https://cs.stanford.edu/people/jcjohns/fast-neural-style/models/……is right --- models/download_style_transfer_models.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/download_style_transfer_models.sh b/models/download_style_transfer_models.sh index 60f9a21..3427e93 100644 --- a/models/download_style_transfer_models.sh +++ b/models/download_style_transfer_models.sh @@ -1,4 +1,4 @@ -BASE_URL="http://cs.stanford.edu/people/jcjohns/fast-neural-style/models/" +BASE_URL="https://cs.stanford.edu/people/jcjohns/fast-neural-style/models/" mkdir -p models/instance_norm cd models/instance_norm From 4ec995520b420787e90e3c5b3ebb1bc81651f60a Mon Sep 17 00:00:00 2001 From: jsxyhelu Date: Tue, 9 Jul 2019 13:36:08 +0800 Subject: [PATCH 2/2] change http to https MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit http://cs.stanford.edu/people/jcjohns/fast-neural-style/models/…… is invalid https://cs.stanford.edu/people/jcjohns/fast-neural-style/models/……is right --- models/download_vgg16.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/download_vgg16.sh b/models/download_vgg16.sh index a26e2ed..97ab4c6 100644 --- a/models/download_vgg16.sh +++ b/models/download_vgg16.sh @@ -1,3 +1,3 @@ cd models -curl -O "http://cs.stanford.edu/people/jcjohns/fast-neural-style/models/vgg16.t7" +curl -O "https://cs.stanford.edu/people/jcjohns/fast-neural-style/models/vgg16.t7" cd ../