mirror of
https://github.com/wassname/Clover-Edition.git
synced 2026-09-21 12:30:46 +08:00
10 lines
214 B
Bash
Executable File
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
|