Xeno443 commited on
Commit
e108ec7
·
verified ·
1 Parent(s): a3faee0

Upload get-models.bat

Browse files
Files changed (1) hide show
  1. runscripts/get-models.bat +39 -0
runscripts/get-models.bat ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @ECHO OFF
2
+ ECHO.
3
+ ECHO This script will download different models for Upscale, ADetailer and ControlNet.
4
+ PAUSE
5
+
6
+ ECHO Downloading popular Upscale models ...
7
+ IF NOT EXIST "webui\models\ESRGAN" MD "webui\models\ESRGAN"
8
+ 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"
9
+ 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"
10
+ 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"
11
+ curl --skip-existing -L "https://huggingface.co/datasets/Xeno443/reForge-portable/resolve/main/models/4x_Nomos8k-SC.pth" -o "webui\models\ESRGAN\4xNomos8kSC.pth"
12
+ 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"
13
+ ECHO.
14
+
15
+ ECHO Downloading ADetailer model ...
16
+ IF NOT EXIST "webui\models\adetailer" MD "webui\models\adetailer"
17
+ curl --skip-existing -L "https://huggingface.co/datasets/Xeno443/reForge-portable/resolve/main/models/fdetailerAdetailerFor_v11.pt" -o "webui\models\adetailer\fdetailerAdetailerFor_v11.pt"
18
+ ECHO.
19
+
20
+ ECHO Downloading HAT Upscale model ...
21
+ IF NOT EXIST "webui\models\HAT" MD "webui\models\HAT"
22
+ 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"
23
+ ECHO.
24
+
25
+ ECHO Downloading ControlNet model ...
26
+ IF NOT EXIST "webui\models\ControlNet" MD "webui\models\ControlNet"
27
+ 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"
28
+ ECHO.
29
+
30
+ ECHO If you don't have a base model downloaded yet, contine to download. Otherwise close this window now.
31
+ PAUSE
32
+
33
+ ECHO.
34
+ ECHO Downloading StableMondAI-SDG model ...
35
+ curl --skip-existing -L "https://huggingface.co/Xeno443/StableMondAI-SDG/resolve/main/StableMondAI-SDG.safetensors" -o "webui\models\Stable-diffusion\StableMondAI-SDG.safetensors"
36
+ ECHO.
37
+
38
+ ECHO Done
39
+ pause