From 2e243b815642b30b7836a7e66d949c25ddd5e31d Mon Sep 17 00:00:00 2001 From: Mickael Tits Date: Tue, 9 Jul 2019 18:09:19 +0200 Subject: [PATCH 1/2] Download without checking certificate I needed this to make it work as least in Google Colab. --- datasets/download_Set12.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/datasets/download_Set12.sh b/datasets/download_Set12.sh index d937f45..cbebf9d 100644 --- a/datasets/download_Set12.sh +++ b/datasets/download_Set12.sh @@ -1,3 +1,3 @@ -wget https://download.visinf.tu-darmstadt.de/data/denoising_datasets/Set12.zip +!wget --no-check-certificate https://download.visinf.tu-darmstadt.de/data/denoising_datasets/Set12.zip unzip Set12.zip -rm Set12.zip \ No newline at end of file +rm Set12.zip From ffdd4e67813e667dd3315ff130a2249bfc8b7a81 Mon Sep 17 00:00:00 2001 From: Mickael Tits Date: Tue, 9 Jul 2019 18:11:44 +0200 Subject: [PATCH 2/2] (works better without the ! added for iPython) --- datasets/download_Set12.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datasets/download_Set12.sh b/datasets/download_Set12.sh index cbebf9d..e17b8d7 100644 --- a/datasets/download_Set12.sh +++ b/datasets/download_Set12.sh @@ -1,3 +1,3 @@ -!wget --no-check-certificate https://download.visinf.tu-darmstadt.de/data/denoising_datasets/Set12.zip +wget --no-check-certificate https://download.visinf.tu-darmstadt.de/data/denoising_datasets/Set12.zip unzip Set12.zip rm Set12.zip