| @ECHO OFF | |
| ECHO. | |
| ECHO This script will download different models for Upscale, ADetailer and ControlNet. | |
| PAUSE | |
| ECHO Downloading popular Upscale models ... | |
| IF NOT EXIST "webui\models\ESRGAN" MD "webui\models\ESRGAN" | |
| curl --skip-existing -L "https://huggingface.co/datasets/Xeno443/reForge-portable/resolve/main/models/4x_NMKD-Siax_200k.pth" -o "webui\models\ESRGAN\4x_NMKD-Siax_200k.pth" | |
| curl --skip-existing -L "https://huggingface.co/datasets/Xeno443/reForge-portable/resolve/main/models/4x_foolhardy_Remacri.pth" -o "webui\models\ESRGAN\4x_foolhardy_Remacri.pth" | |
| curl --skip-existing -L "https://huggingface.co/datasets/Xeno443/reForge-portable/resolve/main/models/4x_Nickelback_70000G.pth" -o "webui\models\ESRGAN\4x_Nickelback_70000G.pth" | |
| curl --skip-existing -L "https://huggingface.co/datasets/Xeno443/reForge-portable/resolve/main/models/4x_Nomos8k-SC.pth" -o "webui\models\ESRGAN\4xNomos8kSC.pth" | |
| curl --skip-existing -L "https://huggingface.co/datasets/Xeno443/reForge-portable/resolve/main/models/1x_ReFocus-Cleanly.pth" -o "webui\models\ESRGAN\1x_ReFocus-Cleanly.pth" | |
| ECHO. | |
| ECHO Downloading ADetailer model ... | |
| IF NOT EXIST "webui\models\adetailer" MD "webui\models\adetailer" | |
| curl --skip-existing -L "https://huggingface.co/datasets/Xeno443/reForge-portable/resolve/main/models/fdetailerAdetailerFor_v11.pt" -o "webui\models\adetailer\fdetailerAdetailerFor_v11.pt" | |
| ECHO. | |
| ECHO Downloading HAT Upscale model ... | |
| IF NOT EXIST "webui\models\HAT" MD "webui\models\HAT" | |
| curl --skip-existing -L "https://huggingface.co/datasets/Xeno443/reForge-portable/resolve/main/models/4x_Nomos8kSCHAT-L.pth" -o "webui\models\HAT\4x_Nomos8kSCHAT-L.pth" | |
| ECHO. | |
| ECHO Downloading ControlNet model ... | |
| IF NOT EXIST "webui\models\ControlNet" MD "webui\models\ControlNet" | |
| curl --skip-existing -L "https://huggingface.co/xinsir/controlnet-union-sdxl-1.0/resolve/main/diffusion_pytorch_model_promax.safetensors" -o "webui\models\ControlNet\Union_sdxlv1_promax.safetensors" | |
| ECHO. | |
| ECHO If you don't have a base model downloaded yet, contine to download. Otherwise close this window now. | |
| PAUSE | |
| ECHO. | |
| ECHO Downloading StableMondAI-SDG model ... | |
| curl --skip-existing -L "https://huggingface.co/Xeno443/StableMondAI-SDG/resolve/main/StableMondAI-SDG.safetensors" -o "webui\models\Stable-diffusion\StableMondAI-SDG.safetensors" | |
| ECHO. | |
| ECHO Done | |
| pause | 
