Spaces:
Runtime error
Runtime error
Update on_start.sh
Browse files- on_start.sh +11 -14
on_start.sh
CHANGED
@@ -1,14 +1,6 @@
|
|
1 |
#!/bin/bash
|
2 |
set -euo pipefail
|
3 |
|
4 |
-
function download-model() {
|
5 |
-
local _option=$1
|
6 |
-
local _filename=$2
|
7 |
-
local _url=$3
|
8 |
-
local _dir
|
9 |
-
#!/bin/bash
|
10 |
-
set -euo pipefail
|
11 |
-
|
12 |
function download-model() {
|
13 |
local _option=$1
|
14 |
local _filename=$2
|
@@ -118,13 +110,13 @@ download-model --control-net "control_v1p_sd15_qrcode.yaml" "https://huggingface
|
|
118 |
## ----------------------------
|
119 |
|
120 |
## Checkpoints:
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
download-model --checkpoint "XenoGASM-
|
125 |
download-model --checkpoint "XenoPHOBIA-v1.safetensors" "https://huggingface.co/Xenos14/XenoREALITY/resolve/main/XenoPHOBIA-v1.safetensors"
|
126 |
-
|
127 |
-
download-model --checkpoint "
|
128 |
download-model --checkpoint "XenoREALITY-v2.safetensors" "https://huggingface.co/Xenos14/XenoREALITY/resolve/main/XenoREALITY-v2.safetensors"
|
129 |
|
130 |
## ----------------------------
|
@@ -144,3 +136,8 @@ download-model --checkpoint "XenoREALITY-v2.safetensors" "https://huggingface.co
|
|
144 |
## Checkpoint 路 Example:
|
145 |
# download-model --checkpoint "FILENAME" "URL"
|
146 |
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#!/bin/bash
|
2 |
set -euo pipefail
|
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
function download-model() {
|
5 |
local _option=$1
|
6 |
local _filename=$2
|
|
|
110 |
## ----------------------------
|
111 |
|
112 |
## Checkpoints:
|
113 |
+
download-model --checkpoint "XenoBABES.safetensors" "https://huggingface.co/Xenos14/Checkpoints/resolve/main/XenoBABES.safetensors"
|
114 |
+
download-model --checkpoint "XenoGASM_LCM-v5.safetensors" "https://huggingface.co/Xenos14/XenoREALITY/resolve/main/LCM/XenoGASM_LCM-v5.safetensors"
|
115 |
+
download-model --checkpoint "XenoBABES_LCM.safetensors" "https://huggingface.co/Xenos14/XenoREALITY/resolve/main/LCM/XenoBABES_LCM.safetensors"
|
116 |
+
download-model --checkpoint "XenoGASM-v5.safetensors" "https://huggingface.co/Xenos14/XenoREALITY/resolve/main/XenoGASM-v5.safetensors"
|
117 |
download-model --checkpoint "XenoPHOBIA-v1.safetensors" "https://huggingface.co/Xenos14/XenoREALITY/resolve/main/XenoPHOBIA-v1.safetensors"
|
118 |
+
download-model --checkpoint "XenoXTC-LCM-vTOON.safetensors" "https://huggingface.co/Xenos14/XenoREALITY/resolve/main/LCM/XenoXTC-LCM-vTOON.safetensors"
|
119 |
+
download-model --checkpoint "Kitsch-In-Synch-LCM-v2.safetensors" "https://huggingface.co/Xenos14/TestBed/resolve/main/LCM/Kitsch-In-Synch-LCM-v2.safetensors"
|
120 |
download-model --checkpoint "XenoREALITY-v2.safetensors" "https://huggingface.co/Xenos14/XenoREALITY/resolve/main/XenoREALITY-v2.safetensors"
|
121 |
|
122 |
## ----------------------------
|
|
|
136 |
## Checkpoint 路 Example:
|
137 |
# download-model --checkpoint "FILENAME" "URL"
|
138 |
|
139 |
+
## LORA (low-rank adaptation) 路 Example:
|
140 |
+
# download-model --lora "FILENAME" "URL"
|
141 |
+
|
142 |
+
## VAE (variational autoencoder) 路 Example:
|
143 |
+
# download-model --vae "FILENAME" "URL"
|