|
#!/bin/bash |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DISK_GB_REQUIRED=30 |
|
|
|
APT_PACKAGES=( |
|
|
|
|
|
) |
|
|
|
PIP_PACKAGES=( |
|
"onnxruntime-gpu" |
|
) |
|
|
|
EXTENSIONS=( |
|
"https://github.com/Bing-su/adetailer.git" |
|
"https://github.com/adieyal/sd-dynamic-prompts" |
|
"https://github.com/Koishi-Star/Euler-Smea-Dyn-Sampler.git" |
|
"https://github.com/DominikDoom/a1111-sd-webui-tagcomplete.git" |
|
"https://github.com/BlafKing/sd-civitai-browser-plus.git" |
|
"https://github.com/zanllp/sd-webui-infinite-image-browsing.git" |
|
"https://github.com/altoiddealer/--sd-webui-ar-plusplus" |
|
"https://github.com/Haoming02/sd-webui-tabs-extension.git" |
|
"https://github.com/Haoming02/sd-forge-couple.git" |
|
"https://github.com/Akegarasu/sd-webui-model-converter.git" |
|
) |
|
|
|
CHECKPOINT_MODELS=( |
|
"https://huggingface.co/huchukato/favs/resolve/main/ckpt/pimpmypony-v1-fp16-clip-fix.safetensors" |
|
"https://huggingface.co/huchukato/favs/resolve/main/ckpt/autismmixSDXL_autismmixConfetti_256991.safetensors" |
|
"https://huggingface.co/huchukato/favs/resolve/main/ckpt/aniversePonyXL_v40.safetensors" |
|
) |
|
|
|
LORA_MODELS=( |
|
"https://huggingface.co/huchukato/favs/resolve/main/loras/nsfw/Expressive_H-000001_306661.safetensors" |
|
"https://huggingface.co/huchukato/favs/resolve/main/loras/nsfw/incase_style_v3-1_ponyxl_ilff_356767.safetensors" |
|
"https://huggingface.co/huchukato/favs/resolve/main/loras/pony/S1_Dramatic_Lighting_v3_1184559.safetensors" |
|
"https://huggingface.co/huchukato/favs/resolve/main/loras/pony/d3t41l3dXLP_404816.safetensors" |
|
"https://huggingface.co/huchukato/favs/resolve/main/loras/pony/43stl1ght1ngXLP2_348038.safetensors" |
|
) |
|
|
|
VAE_MODELS=( |
|
"https://huggingface.co/huchukato/favs/resolve/main/VAE/ponyStandardVAE_v10.safetensors" |
|
"https://huggingface.co/stabilityai/sdxl-vae/resolve/main/sdxl_vae.safetensors" |
|
) |
|
|
|
ESRGAN_MODELS=( |
|
"https://huggingface.co/ai-forever/Real-ESRGAN/resolve/main/RealESRGAN_x4.pth" |
|
"https://huggingface.co/FacehugmanIII/4x_foolhardy_Remacri/resolve/main/4x_foolhardy_Remacri.pth" |
|
"https://huggingface.co/Akumetsu971/SD_Anime_Futuristic_Armor/resolve/main/4x_NMKD-Siax_200k.pth" |
|
) |
|
|
|
CONTROLNET_MODELS=( |
|
"https://huggingface.co/lllyasviel/sd_control_collection/resolve/main/diffusers_xl_canny_mid.safetensors" |
|
"https://huggingface.co/lllyasviel/sd_control_collection/resolve/main/diffusers_xl_depth_mid.safetensors?download" |
|
"https://huggingface.co/lllyasviel/sd_control_collection/resolve/main/t2i-adapter_diffusers_xl_openpose.safetensors" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
function provisioning_start() { |
|
|
|
if [[ ! -d /opt/environments/python ]]; then |
|
export MAMBA_BASE=true |
|
fi |
|
source /opt/ai-dock/etc/environment.sh |
|
source /opt/ai-dock/bin/venv-set.sh webui |
|
|
|
DISK_GB_AVAILABLE=$(($(df --output=avail -m "${WORKSPACE}" | tail -n1) / 1000)) |
|
DISK_GB_USED=$(($(df --output=used -m "${WORKSPACE}" | tail -n1) / 1000)) |
|
DISK_GB_ALLOCATED=$(($DISK_GB_AVAILABLE + $DISK_GB_USED)) |
|
provisioning_print_header |
|
provisioning_get_apt_packages |
|
provisioning_get_pip_packages |
|
provisioning_get_extensions |
|
provisioning_get_models \ |
|
"${WORKSPACE}/storage/stable_diffusion/models/ckpt" \ |
|
"${CHECKPOINT_MODELS[@]}" |
|
provisioning_get_models \ |
|
"${WORKSPACE}/storage/stable_diffusion/models/lora" \ |
|
"${LORA_MODELS[@]}" |
|
provisioning_get_models \ |
|
"${WORKSPACE}/storage/stable_diffusion/models/controlnet" \ |
|
"${CONTROLNET_MODELS[@]}" |
|
provisioning_get_models \ |
|
"${WORKSPACE}/storage/stable_diffusion/models/vae" \ |
|
"${VAE_MODELS[@]}" |
|
provisioning_get_models \ |
|
"${WORKSPACE}/storage/stable_diffusion/models/esrgan" \ |
|
"${ESRGAN_MODELS[@]}" |
|
|
|
PLATFORM_ARGS="" |
|
if [[ $XPU_TARGET = "CPU" ]]; then |
|
PLATFORM_ARGS="--use-cpu all --skip-torch-cuda-test --no-half" |
|
fi |
|
PROVISIONING_ARGS="--skip-python-version-check --no-download-sd-model --do-not-download-clip --port 11404 --exit" |
|
ARGS_COMBINED="${PLATFORM_ARGS} $(cat /etc/forge_args.conf) ${PROVISIONING_ARGS}" |
|
|
|
|
|
cd /opt/stable-diffusion-webui-forge |
|
source "$FORGE_VENV/bin/activate" |
|
LD_PRELOAD=libtcmalloc.so python launch.py \ |
|
${ARGS_COMBINED} |
|
deactivate |
|
|
|
|
|
provisioning_print_end |
|
} |
|
|
|
function pip_install() { |
|
"$FORGE_VENV_PIP" install --no-cache-dir "$@" |
|
} |
|
|
|
function provisioning_get_apt_packages() { |
|
if [[ -n $APT_PACKAGES ]]; then |
|
sudo $APT_INSTALL ${APT_PACKAGES[@]} |
|
fi |
|
} |
|
|
|
function provisioning_get_pip_packages() { |
|
if [[ -n $PIP_PACKAGES ]]; then |
|
pip_install ${PIP_PACKAGES[@]} |
|
fi |
|
} |
|
|
|
function provisioning_get_extensions() { |
|
for repo in "${EXTENSIONS[@]}"; do |
|
dir="${repo##*/}" |
|
path="/opt/stable-diffusion-webui-forge/extensions/${dir}" |
|
if [[ -d $path ]]; then |
|
|
|
if [[ ${AUTO_UPDATE,,} == "true" ]]; then |
|
printf "Updating extension: %s...\n" "${repo}" |
|
( cd "$path" && git pull ) |
|
fi |
|
else |
|
printf "Downloading extension: %s...\n" "${repo}" |
|
git clone "${repo}" "${path}" --recursive |
|
fi |
|
done |
|
} |
|
|
|
function provisioning_get_models() { |
|
if [[ -z $2 ]]; then return 1; fi |
|
dir="$1" |
|
mkdir -p "$dir" |
|
shift |
|
if [[ $DISK_GB_ALLOCATED -ge $DISK_GB_REQUIRED ]]; then |
|
arr=("$@") |
|
else |
|
printf "WARNING: Low disk space allocation - Only the first model will be downloaded!\n" |
|
arr=("$1") |
|
fi |
|
|
|
printf "Downloading %s model(s) to %s...\n" "${#arr[@]}" "$dir" |
|
for url in "${arr[@]}"; do |
|
printf "Downloading: %s\n" "${url}" |
|
provisioning_download "${url}" "${dir}" |
|
printf "\n" |
|
done |
|
} |
|
|
|
function provisioning_print_header() { |
|
printf "\n##############################################\n# #\n# Provisioning container #\n# #\n# This will take some time #\n# #\n# Your container will be ready on completion #\n# #\n##############################################\n\n" |
|
if [[ $DISK_GB_ALLOCATED -lt $DISK_GB_REQUIRED ]]; then |
|
printf "WARNING: Your allocated disk size (%sGB) is below the recommended %sGB - Some models will not be downloaded\n" "$DISK_GB_ALLOCATED" "$DISK_GB_REQUIRED" |
|
fi |
|
} |
|
|
|
function provisioning_print_end() { |
|
printf "\nProvisioning complete: Web UI will start now\n\n" |
|
} |
|
|
|
|
|
|
|
function provisioning_download() { |
|
if [[ -n $HF_TOKEN && $1 =~ ^https://([a-zA-Z0-9_-]+\.)?huggingface\.co(/|$|\?) ]]; then |
|
auth_token="$HF_TOKEN" |
|
elif |
|
[[ -n $CIVITAI_TOKEN && $1 =~ ^https://([a-zA-Z0-9_-]+\.)?civitai\.com(/|$|\?) ]]; then |
|
auth_token="$CIVITAI_TOKEN" |
|
fi |
|
if [[ -n $auth_token ]];then |
|
wget --header="Authorization: Bearer $auth_token" -qnc --content-disposition --show-progress -e dotbytes="${3:-4M}" -P "$2" "$1" |
|
else |
|
wget -qnc --content-disposition --show-progress -e dotbytes="${3:-4M}" -P "$2" "$1" |
|
fi |
|
} |
|
|
|
provisioning_start |
|
|