dasghost65536 commited on
Commit
811bbbe
1 Parent(s): 5c3d3e1

fixed an issue where the L in Lora is not uppercase. see comment for more information.

Browse files
Files changed (1) hide show
  1. app.py +35 -12
app.py CHANGED
@@ -63,7 +63,8 @@ Gitclone(r"https://github.com/camenduru/stable-diffusion-webui-huggingface",user
63
  # keeping this in case if someone wants to revert to this extension, I guess?
64
  #Gitclone(r"https://github.com/camenduru/sd-civitai-browser",user_home / r"stable-diffusion-webui" / r"extensions" / r"sd-civitai-browser")
65
  Gitclone(r"https://github.com/BlafKing/sd-civitai-browser-plus",user_home / r"stable-diffusion-webui" / r"extensions" / r"sd-civitai-browser-plus")
66
- Gitclone(r"https://github.com/kohya-ss/sd-webui-additional-networks",user_home / r"stable-diffusion-webui" / r"extensions" / r"sd-webui-additional-networks")
 
67
  Gitclone(r"https://github.com/Mikubill/sd-webui-controlnet",user_home / r"stable-diffusion-webui" / r"extensions" / r"sd-webui-controlnet")
68
  # the following four are disabled because of issues breaking the whole thing, and since
69
  # these extensions are beyond my control anyway, these will be all disabled for the time being
@@ -139,8 +140,10 @@ DownLoad(r"https://huggingface.co/ckpt/anything-v4.0/resolve/main/anything-v4.0.
139
  DownLoad(r"https://civitai.com/api/download/models/90854",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"AnythingV5Ink_ink.safetensors")
140
  #MeinaMixV11
141
  DownLoad(r"https://civitai.com/api/download/models/119057",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"meinamix_meinaV11.safetensors")
142
- #MeinaPastelV6
143
  DownLoad(r"https://civitai.com/api/download/models/108289",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"meinapastel_v6Pastel.safetensors")
 
 
144
 
145
  # ==optional checkpoint models (and misc stuff)==
146
  # by default, none of them are installed (mainly because of storage space reasons),
@@ -150,31 +153,51 @@ DownLoad(r"https://civitai.com/api/download/models/108289",user_home / r"stable-
150
 
151
  #CounterfeitV3
152
  #DownLoad(r"https://huggingface.co/gsdf/Counterfeit-V3.0/resolve/main/Counterfeit-V3.0_fp16.safetensors",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"Counterfeit-V3.0_fp16.safetensors")
 
 
 
153
  #DreamShaper version 8
154
- #DownLoad(r"https://civitai.com/api/download/models/128713",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"dreamshaper_8.safetensors")
155
  #XXMix_9realistic (v4.0)
156
  #DownLoad(r"https://civitai.com/api/download/models/102222",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"xxmix9realistic_v40.safetensors")
157
  #Anime Pastel Dream (soft and hard versions)
158
  #DownLoad(r"https://civitai.com/api/download/models/28100",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"animePastelDream_softBakedVae.safetensors")
159
  #DownLoad(r"https://civitai.com/api/download/models/28089",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"animePastelDream_hardBakedVae.safetensors")
160
-
 
161
 
162
  #MasterVae
163
  #DownLoad(r"https://civitai.com/api/download/models/141727",user_home / r"stable-diffusion-webui" / r"models" / r"VAE",r"mastervae_v1Pt.pt")
164
 
165
  #Lora Model
166
  #Better Light
167
- 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")
168
- DownLoad(r"https://civitai.com/api/download/models/39885",user_home / r"stable-diffusion-webui" / r"models"/ r"lora",r"Better_light.safetensors")
169
  #Detail Tweaker LoRA
170
- DownLoad(r"https://civitai.com/api/download/models/62833",user_home / r"stable-diffusion-webui" / r"extensions" / r"sd-webui-additional-networks" / r"models"/ r"lora",r"add_detail.safetensors")
171
- DownLoad(r"https://civitai.com/api/download/models/62833",user_home / r"stable-diffusion-webui" / r"models"/ r"lora",r"add_detail.safetensors")
172
  #Add More Details - Detail Enhancer / Tweaker
173
- DownLoad(r"https://civitai.com/api/download/models/87153",user_home / r"stable-diffusion-webui" / r"extensions" / r"sd-webui-additional-networks" / r"models"/ r"lora",r"more_details.safetensors")
174
- DownLoad(r"https://civitai.com/api/download/models/87153",user_home / r"stable-diffusion-webui" / r"models"/ r"lora",r"more_details.safetensors")
175
  #Backlighting
176
- DownLoad(r"https://civitai.com/api/download/models/39164",user_home / r"stable-diffusion-webui" / r"extensions" / r"sd-webui-additional-networks" / r"models"/ r"lora",r"backlighting.safetensors")
177
- DownLoad(r"https://civitai.com/api/download/models/39164",user_home / r"stable-diffusion-webui" / r"models"/ r"lora",r"backlighting.safetensors")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
178
  #GFPGAN Model
179
  #detection Resnet50
180
  DownLoad(r"https://github.com/xinntao/facexlib/releases/download/v0.1.0/detection_Resnet50_Final.pth",user_home / r"stable-diffusion-webui"/r"models"/r"GFPGAN",r"detection_Resnet50_Final.pth")
 
63
  # keeping this in case if someone wants to revert to this extension, I guess?
64
  #Gitclone(r"https://github.com/camenduru/sd-civitai-browser",user_home / r"stable-diffusion-webui" / r"extensions" / r"sd-civitai-browser")
65
  Gitclone(r"https://github.com/BlafKing/sd-civitai-browser-plus",user_home / r"stable-diffusion-webui" / r"extensions" / r"sd-civitai-browser-plus")
66
+ # keeping this in case if someone wants to actually use this extension, I guess?
67
+ #Gitclone(r"https://github.com/kohya-ss/sd-webui-additional-networks",user_home / r"stable-diffusion-webui" / r"extensions" / r"sd-webui-additional-networks")
68
  Gitclone(r"https://github.com/Mikubill/sd-webui-controlnet",user_home / r"stable-diffusion-webui" / r"extensions" / r"sd-webui-controlnet")
69
  # the following four are disabled because of issues breaking the whole thing, and since
70
  # these extensions are beyond my control anyway, these will be all disabled for the time being
 
140
  DownLoad(r"https://civitai.com/api/download/models/90854",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"AnythingV5Ink_ink.safetensors")
141
  #MeinaMixV11
142
  DownLoad(r"https://civitai.com/api/download/models/119057",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"meinamix_meinaV11.safetensors")
143
+ #MeinaPastelV6 (version 5 optional)
144
  DownLoad(r"https://civitai.com/api/download/models/108289",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"meinapastel_v6Pastel.safetensors")
145
+ #DownLoad(r"https://huggingface.co/Meina/MeinaPastel/resolve/main/MeinaPastelV5%20-%20Baked%20VAE.safetensors",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"MeinaPastelV5_BakedVAE.safetensors")
146
+ #DownLoad(r"https://huggingface.co/Meina/MeinaPastel/resolve/main/MeinaPastelV5%20-%20Without%20VAE.safetensors",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"MeinaPastelV5_WithoutVAE.safetensors")
147
 
148
  # ==optional checkpoint models (and misc stuff)==
149
  # by default, none of them are installed (mainly because of storage space reasons),
 
153
 
154
  #CounterfeitV3
155
  #DownLoad(r"https://huggingface.co/gsdf/Counterfeit-V3.0/resolve/main/Counterfeit-V3.0_fp16.safetensors",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"Counterfeit-V3.0_fp16.safetensors")
156
+ #AbyssOrangeMix2 sfw
157
+ #DownLoad(r"https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/AbyssOrangeMix2/AbyssOrangeMix2_sfw.safetensors",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"AbyssOrangeMix2_sfw.safetensors")
158
+ #DownLoad(r"https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/VAEs/orangemix.vae.pt",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"orangemix.vae.pt")
159
  #DreamShaper version 8
160
+ DownLoad(r"https://civitai.com/api/download/models/128713",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"dreamshaper_8.safetensors")
161
  #XXMix_9realistic (v4.0)
162
  #DownLoad(r"https://civitai.com/api/download/models/102222",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"xxmix9realistic_v40.safetensors")
163
  #Anime Pastel Dream (soft and hard versions)
164
  #DownLoad(r"https://civitai.com/api/download/models/28100",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"animePastelDream_softBakedVae.safetensors")
165
  #DownLoad(r"https://civitai.com/api/download/models/28089",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"animePastelDream_hardBakedVae.safetensors")
166
+ #MIX-Pro-V4
167
+ #DownLoad(r"https://civitai.com/api/download/models/34559",user_home / r"stable-diffusion-webui" / r"models" / r"Stable-diffusion",r"mixProV4_v4.safetensors")
168
 
169
  #MasterVae
170
  #DownLoad(r"https://civitai.com/api/download/models/141727",user_home / r"stable-diffusion-webui" / r"models" / r"VAE",r"mastervae_v1Pt.pt")
171
 
172
  #Lora Model
173
  #Better Light
174
+ #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")
175
+ DownLoad(r"https://civitai.com/api/download/models/39885",user_home / r"stable-diffusion-webui" / r"models" / r"Lora",r"Better_light.safetensors")
176
  #Detail Tweaker LoRA
177
+ #DownLoad(r"https://civitai.com/api/download/models/62833",user_home / r"stable-diffusion-webui" / r"extensions" / r"sd-webui-additional-networks" / r"models"/ r"lora",r"add_detail.safetensors")
178
+ DownLoad(r"https://civitai.com/api/download/models/62833",user_home / r"stable-diffusion-webui" / r"models" / r"Lora",r"add_detail.safetensors")
179
  #Add More Details - Detail Enhancer / Tweaker
180
+ #DownLoad(r"https://civitai.com/api/download/models/87153",user_home / r"stable-diffusion-webui" / r"extensions" / r"sd-webui-additional-networks" / r"models"/ r"lora",r"more_details.safetensors")
181
+ DownLoad(r"https://civitai.com/api/download/models/87153",user_home / r"stable-diffusion-webui" / r"models" / r"Lora",r"more_details.safetensors")
182
  #Backlighting
183
+ #DownLoad(r"https://civitai.com/api/download/models/39164",user_home / r"stable-diffusion-webui" / r"extensions" / r"sd-webui-additional-networks" / r"models"/ r"lora",r"backlighting.safetensors")
184
+ DownLoad(r"https://civitai.com/api/download/models/39164",user_home / r"stable-diffusion-webui" / r"models" / r"Lora",r"backlighting.safetensors")
185
+
186
+ # ==optional lora models (and misc stuff)==
187
+ # by default, none of them are installed (mainly because of storage space reasons),
188
+ # unless you uncomment one of them just to actually use them.
189
+
190
+ # ==weird fact==
191
+ # Turns out that A1111 seem to be case sensitive about the first letter being an uppercase,
192
+ # which may explain the reason why it's not showing up in the Lora tab.
193
+ # I'm wondering why the additional networks extension had to be installed because of
194
+ # some issue the original author had to deal with, something they never bothered
195
+ # to fix, for whatever reason.
196
+
197
+ #LAS
198
+ #DownLoad(r"https://civitai.com/api/download/models/21065",user_home / r"stable-diffusion-webui" / r"extensions" / r"sd-webui-additional-networks" / r"models"/ r"lora",r"LAS.safetensors")
199
+ #DownLoad(r"https://civitai.com/api/download/models/21065",user_home / r"stable-diffusion-webui" / r"models" / r"Lora",r"LAS.safetensors")
200
+
201
  #GFPGAN Model
202
  #detection Resnet50
203
  DownLoad(r"https://github.com/xinntao/facexlib/releases/download/v0.1.0/detection_Resnet50_Final.pth",user_home / r"stable-diffusion-webui"/r"models"/r"GFPGAN",r"detection_Resnet50_Final.pth")