Update app.py
Browse files
app.py
CHANGED
@@ -19,18 +19,22 @@ os.chdir("extensions")
|
|
19 |
os.system('git clone "https://github.com/DominikDoom/a1111-sd-webui-tagcomplete.git"')
|
20 |
os.chdir("..")
|
21 |
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
|
|
|
|
|
|
26 |
|
27 |
os.chdir("models/Stable-diffusion")
|
28 |
|
29 |
models = [
|
30 |
# "https://huggingface.co/admruul/anything-v3.0/resolve/main/Anything-V3.0.ckpt",
|
31 |
-
|
32 |
-
"https://huggingface.co/
|
33 |
-
"https://huggingface.co/andite/anything-v4.0/resolve/main/anything-v4.
|
|
|
34 |
]
|
35 |
os.system(f"wget {' '.join(models)}")
|
36 |
os.chdir("../..")
|
|
|
19 |
os.system('git clone "https://github.com/DominikDoom/a1111-sd-webui-tagcomplete.git"')
|
20 |
os.chdir("..")
|
21 |
|
22 |
+
embeddings = [
|
23 |
+
"https://huggingface.co/datasets/Nerfgun3/bad_prompt/resolve/main/bad_prompt_version2.pt",
|
24 |
+
"https://huggingface.co/Xynon/models/resolve/main/experimentals/TI/bad-image-v2-39000.pt",
|
25 |
+
]
|
26 |
+
os.chdir("embeddings")
|
27 |
+
os.system(f"wget {' '.join(embeddings)}")
|
28 |
+
os.chdir("..")
|
29 |
|
30 |
os.chdir("models/Stable-diffusion")
|
31 |
|
32 |
models = [
|
33 |
# "https://huggingface.co/admruul/anything-v3.0/resolve/main/Anything-V3.0.ckpt",
|
34 |
+
"https://huggingface.co/admruul/anything-v3.0/resolve/main/Anything-V3.0.vae.pt",
|
35 |
+
"https://huggingface.co/syaimu/7th_Layer/resolve/main/7th_anime_v3/7th_anime_v3_C.safetensors",
|
36 |
+
# "https://huggingface.co/andite/anything-v4.0/resolve/main/anything-v4.5-pruned.safetensors",
|
37 |
+
# "https://huggingface.co/andite/anything-v4.0/resolve/main/anything-v4.0.vae.pt",
|
38 |
]
|
39 |
os.system(f"wget {' '.join(models)}")
|
40 |
os.chdir("../..")
|