diff options
author | missionfloyd <missionfloyd@users.noreply.github.com> | 2023-02-16 02:47:30 +0000 |
---|---|---|
committer | missionfloyd <missionfloyd@users.noreply.github.com> | 2023-02-16 02:47:30 +0000 |
commit | c4ea16a03f8f9c9a9add4049ce5be1a8060464f5 (patch) | |
tree | d2d9643b9bfce6d42bd55fc5395bf574022a20aa /modules/sd_models.py | |
parent | 1615f786eeb5e407f7414835fbb73e7b6f8337de (diff) | |
download | stable-diffusion-webui-gfx803-c4ea16a03f8f9c9a9add4049ce5be1a8060464f5.tar.gz stable-diffusion-webui-gfx803-c4ea16a03f8f9c9a9add4049ce5be1a8060464f5.tar.bz2 stable-diffusion-webui-gfx803-c4ea16a03f8f9c9a9add4049ce5be1a8060464f5.zip |
Add ".vae.ckpt" to ext_blacklist
Diffstat (limited to 'modules/sd_models.py')
-rw-r--r-- | modules/sd_models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/sd_models.py b/modules/sd_models.py index 07072e5c..127e9663 100644 --- a/modules/sd_models.py +++ b/modules/sd_models.py @@ -105,7 +105,7 @@ def checkpoint_tiles(): def list_models():
checkpoints_list.clear()
checkpoint_alisases.clear()
- model_list = modelloader.load_models(model_path=model_path, model_url="https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned-emaonly.safetensors", command_path=shared.cmd_opts.ckpt_dir, ext_filter=[".ckpt", ".safetensors"], download_name="v1-5-pruned-emaonly.safetensors", ext_blacklist=[".vae.safetensors"])
+ model_list = modelloader.load_models(model_path=model_path, model_url="https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned-emaonly.safetensors", command_path=shared.cmd_opts.ckpt_dir, ext_filter=[".ckpt", ".safetensors"], download_name="v1-5-pruned-emaonly.safetensors", ext_blacklist=[".vae.ckpt", ".vae.safetensors"])
cmd_ckpt = shared.cmd_opts.ckpt
if os.path.exists(cmd_ckpt):
|