mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-06-07 21:20:49 +00:00
Change VAE search order and thus priority
This commit is contained in:
parent
2468039df2
commit
e1b2ea6e00
@ -25,10 +25,10 @@ def refresh_vae_list(vae_path=vae_path, model_path=model_path):
|
|||||||
global vae_dict, vae_list
|
global vae_dict, vae_list
|
||||||
res = {}
|
res = {}
|
||||||
candidates = [
|
candidates = [
|
||||||
*glob.iglob(os.path.join(model_path, '**/*.vae.pt'), recursive=True),
|
|
||||||
*glob.iglob(os.path.join(model_path, '**/*.vae.ckpt'), recursive=True),
|
*glob.iglob(os.path.join(model_path, '**/*.vae.ckpt'), recursive=True),
|
||||||
*glob.iglob(os.path.join(vae_path, '**/*.pt'), recursive=True),
|
*glob.iglob(os.path.join(model_path, '**/*.vae.pt'), recursive=True),
|
||||||
*glob.iglob(os.path.join(vae_path, '**/*.ckpt'), recursive=True)
|
*glob.iglob(os.path.join(vae_path, '**/*.ckpt'), recursive=True)
|
||||||
|
*glob.iglob(os.path.join(vae_path, '**/*.pt'), recursive=True),
|
||||||
]
|
]
|
||||||
if shared.cmd_opts.vae_path is not None and os.path.isfile(shared.cmd_opts.vae_path):
|
if shared.cmd_opts.vae_path is not None and os.path.isfile(shared.cmd_opts.vae_path):
|
||||||
candidates.append(shared.cmd_opts.vae_path)
|
candidates.append(shared.cmd_opts.vae_path)
|
||||||
|
Loading…
Reference in New Issue
Block a user