Script to download LoRA, LyCORIS and CKPTs to temporary folders
This commit is contained in:
parent
2ffec5d89c
commit
55a34a3713
1 changed files with 44 additions and 0 deletions
44
stable-diffusion/download_temp_model.sh
Normal file
44
stable-diffusion/download_temp_model.sh
Normal 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
|
Loading…
Add table
Reference in a new issue