Spaces:
Sleeping
Sleeping
dasghost65536
commited on
Commit
•
66303f3
1
Parent(s):
d84c2cf
yet more optional checkpoint models (including two SDXL-based ones)
Browse filesnote that the two checkpoint models that are Stable Diffusion XL-based will not work on a CPU-powered space, because these are commented out because of hardware related issue reasons.
app.py
CHANGED
@@ -173,10 +173,28 @@ DownLoad(r"https://civitai.com/api/download/models/95489",user_home / r"stable-d
|
|
173 |
DownLoad(r"https://civitai.com/api/download/models/221305",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"animeDreamerMixed_v10.safetensors")
|
174 |
#Sevan Mix
|
175 |
#DownLoad(r"https://civitai.com/api/download/models/226816",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"sevanMix_v10.safetensors")
|
|
|
|
|
|
|
|
|
|
|
|
|
176 |
|
177 |
#MasterVae
|
178 |
#DownLoad(r"https://civitai.com/api/download/models/141727",user_home / r"stable-diffusion-webui" / r"models" / r"VAE",r"mastervae_v1Pt.pt")
|
179 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
#Lora Model
|
181 |
#Better Light
|
182 |
#DownLoad(r"https://civitai.com/api/download/models/39885",user_home / r"stable-diffusion-webui" / r"extensions" / r"sd-webui-additional-networks" / r"models"/ r"lora",r"Better_light.safetensors")
|
|
|
173 |
DownLoad(r"https://civitai.com/api/download/models/221305",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"animeDreamerMixed_v10.safetensors")
|
174 |
#Sevan Mix
|
175 |
#DownLoad(r"https://civitai.com/api/download/models/226816",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"sevanMix_v10.safetensors")
|
176 |
+
#Yntec's checkpoint models that has the word dream on it (yeah, not a good title for this, but whatever)
|
177 |
+
#DownLoad(r"https://huggingface.co/Yntec/Dreamsphere/resolve/main/dreamsphere.safetensors",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"dreamsphere.safetensors")
|
178 |
+
#DownLoad(r"https://huggingface.co/Yntec/dreamlike-photoreal-remix/resolve/main/dreamlike-photoreal-remix.safetensors",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"dreamlike-photoreal-remix.safetensors")
|
179 |
+
#DownLoad(r"https://huggingface.co/Yntec/DreamLikeRemix/resolve/main/dreamLikeRemix.safetensors",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"dreamLikeRemix.safetensors")
|
180 |
+
#DownLoad(r"https://huggingface.co/Yntec/Dreamlike/resolve/main/Dreamlike.safetensors",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"Dreamlike.safetensors")
|
181 |
+
#DownLoad(r"https://huggingface.co/Yntec/Photosphere/resolve/main/photosphere.safetensors",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"photosphere.safetensors")
|
182 |
|
183 |
#MasterVae
|
184 |
#DownLoad(r"https://civitai.com/api/download/models/141727",user_home / r"stable-diffusion-webui" / r"models" / r"VAE",r"mastervae_v1Pt.pt")
|
185 |
|
186 |
+
# ==Stable Diffusion XL-based checkpoint models==
|
187 |
+
# by default, these are commented out, since they don't work
|
188 |
+
# at all if one were to use them on a CPU-powered space... this
|
189 |
+
# is why all of them in this section are not uncommented out
|
190 |
+
# because of hardware related issues. Works if they are
|
191 |
+
# run on a GPU, but not if it's CPU-powered.
|
192 |
+
|
193 |
+
#Counterfeit-xl
|
194 |
+
#DownLoad(r"https://huggingface.co/ckpt/counterfeit-xl/resolve/main/counterfeitxl_v10.safetensors",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"counterfeitxl_v10.safetensors")
|
195 |
+
#Animagine-xl
|
196 |
+
#DownLoad(r"https://huggingface.co/ckpt/animagine-xl/resolve/main/animagineXL_v10.safetensors",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"animagineXL_v10.safetensors")
|
197 |
+
|
198 |
#Lora Model
|
199 |
#Better Light
|
200 |
#DownLoad(r"https://civitai.com/api/download/models/39885",user_home / r"stable-diffusion-webui" / r"extensions" / r"sd-webui-additional-networks" / r"models"/ r"lora",r"Better_light.safetensors")
|