2022-09-16 14:40:20 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-10-07 07:46:07 +00:00
|
|
|
set -Eeuo pipefail
|
|
|
|
|
|
|
|
declare -A MOUNTS
|
|
|
|
|
|
|
|
# cache
|
|
|
|
MOUNTS["/root/.cache"]=/data/.cache
|
|
|
|
# ui specific
|
|
|
|
MOUNTS["${PWD}/models/ldm/stable-diffusion-v1/model.ckpt"]=/data/StableDiffusion/model.ckpt
|
|
|
|
MOUNTS["${PWD}/src/gfpgan/experiments/pretrained_models/GFPGANv1.4.pth"]=/data/GFPGAN/GFPGANv1.4.pth
|
2022-10-14 13:52:01 +00:00
|
|
|
MOUNTS["${PWD}/ldm/invoke/restoration/codeformer/weights"]=/data/Codeformer
|
2022-10-07 07:46:07 +00:00
|
|
|
# hacks
|
|
|
|
MOUNTS["/opt/conda/lib/python3.9/site-packages/facexlib/weights"]=/data/.cache
|
|
|
|
MOUNTS["/opt/conda/lib/python3.9/site-packages/realesrgan/weights"]=/data/RealESRGAN
|
2022-10-14 13:52:01 +00:00
|
|
|
MOUNTS["${PWD}/gfpgan/weights"]=/data/.cache
|
2022-10-07 07:46:07 +00:00
|
|
|
|
|
|
|
for to_path in "${!MOUNTS[@]}"; do
|
|
|
|
set -Eeuo pipefail
|
|
|
|
from_path="${MOUNTS[${to_path}]}"
|
|
|
|
rm -rf "${to_path}"
|
|
|
|
mkdir -p "$(dirname "${to_path}")"
|
|
|
|
ln -sT "${from_path}" "${to_path}"
|
|
|
|
echo Mounted $(basename "${from_path}")
|
|
|
|
done
|
2022-09-18 11:49:06 +00:00
|
|
|
|
2022-09-16 14:40:20 +00:00
|
|
|
if "${PRELOAD}" == "true"; then
|
|
|
|
python3 -u scripts/preload_models.py
|
|
|
|
fi
|