13 lines
233 B
Bash
Executable File
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
|
|
|