This repository has been archived on 2019-09-17. You can view files and clone it, but cannot push or open issues or pull requests.
Files
research-project/data/download_models.sh

13 lines
233 B
Bash
Executable File

#!/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