Create a simple script to download models.

This commit is contained in:
2017-10-07 16:15:36 +02:00
parent 49d872fd86
commit fdf0f7c82f
6 changed files with 2385 additions and 0 deletions

12
data/download_models.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
# Make sure we're in the right directory
cd "$(dirname "${BASH_SOURCE[0]}")" || (echo "Could not change dir" && exit 1)
pwd
for modeldir in models/*; do
pushd "$modeldir"
wget --continue -i weights_url -N
popd
done