Add VGG networks.

This commit is contained in:
2018-03-20 16:14:10 +01:00
parent 42a5d882d6
commit 0a8aa4e2eb
9 changed files with 1544 additions and 3 deletions

View File

@@ -5,8 +5,11 @@ cd "$(dirname "${BASH_SOURCE[0]}")" || (echo "Could not change dir" && exit 1)
pwd
for modeldir in models/*; do
pushd "$modeldir"
if ! pushd "$modeldir" &>/dev/null; then
continue
fi
wget --continue -i weights_url -N
popd
popd || exit 1
done