Files
Clover-Edition/generator/ctrl/download_model.sh
T
2019-09-18 12:57:28 -06:00

10 lines
214 B
Bash
Executable File

# Download the 512-length model if specified, 256-length otherwise
if [ "$1" = "512" ]
then
URL="gs://sf-ctrl/seqlen512_v1.ckpt/"
else
URL="gs://sf-ctrl/seqlen256_v1.ckpt/"
fi
gsutil -m cp -r "$URL" model