1
0
Fork 0

Script to download LoRA, LyCORIS and CKPTs to temporary folders

This commit is contained in:
Luca Beltrame 2023-06-04 15:16:08 +02:00
parent 2ffec5d89c
commit 55a34a3713
Signed by: einar
GPG key ID: 4707F46E9EC72DEC

View file

@ -0,0 +1,44 @@
#!/bin/bash
set -e
set -o nounset
set -o pipefail
model_addr="$1"
model_type="$2"
sd_root="/notebooks/automatic/"
case "${model_type}" in
"lora")
tmpdir="/tmp/lora"
dest="${sd_root}/models/Lora/"
;;
"ckpt")
tmpdir="/tmp/models"
dest="${sd_root}/models/Stable-diffusion/"
;;
"lycoris")
tmpdir="/tmp/models"
dest="${sd_root}/models/LyCORIS/"
;;
*)
echo "Unknown model type."
exit 1
;;
esac
mkdir -p "${tmpdir}"
cd "${tmpdir}"
modelfile="$(curl -O -J -L --remote-name -s \
-w "%{filename_effective}" "${model_addr}")"
echo "Downloaded ${modelfile}"
fullpath=$(realpath "${modelfile}")
echo "Linking ${modelfile} to ${dest}..."
pushd "$dest"
ln -s "$fullpath" .
popd