From 4d95b7adb21190d41d7ec4f291685df9e31e4e7f Mon Sep 17 00:00:00 2001 From: Supun Nakandala Date: Fri, 29 Mar 2019 23:18:19 -0700 Subject: [PATCH] updating the weights download fil --- code-release/download_cnn_weights.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code-release/download_cnn_weights.sh b/code-release/download_cnn_weights.sh index e701c7a..4d93bc2 100755 --- a/code-release/download_cnn_weights.sh +++ b/code-release/download_cnn_weights.sh @@ -8,3 +8,11 @@ mv inception3_weights_ptch.h5 core/python wget http://supun.ucsd.edu/krypton/cnn_weights/vgg16_weights_ptch.h5 mv vgg16_weights_ptch.h5 core/python +for dataset in 'oct' 'chest' +do + for model in 'vgg16' 'resnet18' 'inception3' + do + wget "http://supun.ucsd.edu/krypton/cnn_weights/"$dataset"_"$model"_ptch.h5"; + mv $dataset"_"$model"_ptch.h5" core/python; + done +done