Skip to content

Commit 049020f

Browse files
committed
smaller default model
1 parent f53d0b4 commit 049020f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/sd_models.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,9 @@ def list_models():
157157
if shared.cmd_opts.no_download_sd_model or cmd_ckpt != shared.sd_model_file or os.path.exists(cmd_ckpt):
158158
model_url = None
159159
else:
160-
model_url = "https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned-emaonly.safetensors"
160+
model_url = "https://huggingface.co/lllyasviel/fav_models/resolve/main/fav/realisticVisionV51_v51VAE.safetensors"
161161

162-
model_list = modelloader.load_models(model_path=model_path, model_url=model_url, command_path=shared.cmd_opts.ckpt_dir, ext_filter=[".ckpt", ".safetensors"], download_name="v1-5-pruned-emaonly.safetensors", ext_blacklist=[".vae.ckpt", ".vae.safetensors"])
162+
model_list = modelloader.load_models(model_path=model_path, model_url=model_url, command_path=shared.cmd_opts.ckpt_dir, ext_filter=[".ckpt", ".safetensors"], download_name="realisticVisionV51_v51VAE.safetensors", ext_blacklist=[".vae.ckpt", ".vae.safetensors"])
163163

164164
if os.path.exists(cmd_ckpt):
165165
checkpoint_info = CheckpointInfo(cmd_ckpt)

0 commit comments

Comments
 (0)