2022-10-30 14:54:31 +00:00
|
|
|
import torch
|
2023-01-08 17:17:50 +00:00
|
|
|
import safetensors.torch
|
2022-10-30 14:54:31 +00:00
|
|
|
import os
|
2022-12-25 12:49:25 +00:00
|
|
|
import collections
|
2022-10-30 14:54:31 +00:00
|
|
|
from collections import namedtuple
|
2023-01-09 16:58:35 +00:00
|
|
|
from modules import shared, devices, script_callbacks, sd_models
|
2022-10-30 14:54:31 +00:00
|
|
|
from modules.paths import models_path
|
|
|
|
import glob
|
2022-11-17 11:04:10 +00:00
|
|
|
from copy import deepcopy
|
2022-10-30 14:54:31 +00:00
|
|
|
|
2022-11-02 05:51:46 +00:00
|
|
|
|
2023-01-14 16:56:09 +00:00
|
|
|
vae_path = os.path.abspath(os.path.join(models_path, "VAE"))
|
2022-10-30 14:54:31 +00:00
|
|
|
vae_ignore_keys = {"model_ema.decay", "model_ema.num_updates"}
|
2023-01-14 16:56:09 +00:00
|
|
|
vae_dict = {}
|
2022-10-30 14:54:31 +00:00
|
|
|
|
2022-11-02 05:51:46 +00:00
|
|
|
|
|
|
|
base_vae = None
|
|
|
|
loaded_vae_file = None
|
|
|
|
checkpoint_info = None
|
|
|
|
|
2022-12-25 12:49:25 +00:00
|
|
|
checkpoints_loaded = collections.OrderedDict()
|
2022-11-02 05:51:46 +00:00
|
|
|
|
|
|
|
def get_base_vae(model):
|
|
|
|
if base_vae is not None and checkpoint_info == model.sd_checkpoint_info and model:
|
|
|
|
return base_vae
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
def store_base_vae(model):
|
|
|
|
global base_vae, checkpoint_info
|
|
|
|
if checkpoint_info != model.sd_checkpoint_info:
|
2022-11-03 04:10:53 +00:00
|
|
|
assert not loaded_vae_file, "Trying to store non-base VAE!"
|
2022-11-17 11:04:10 +00:00
|
|
|
base_vae = deepcopy(model.first_stage_model.state_dict())
|
2022-11-02 05:51:46 +00:00
|
|
|
checkpoint_info = model.sd_checkpoint_info
|
|
|
|
|
|
|
|
|
|
|
|
def delete_base_vae():
|
|
|
|
global base_vae, checkpoint_info
|
|
|
|
base_vae = None
|
|
|
|
checkpoint_info = None
|
|
|
|
|
|
|
|
|
|
|
|
def restore_base_vae(model):
|
2022-11-03 04:10:53 +00:00
|
|
|
global loaded_vae_file
|
2022-11-02 05:51:46 +00:00
|
|
|
if base_vae is not None and checkpoint_info == model.sd_checkpoint_info:
|
2022-11-02 15:54:09 +00:00
|
|
|
print("Restoring base VAE")
|
2022-11-18 18:27:54 +00:00
|
|
|
_load_vae_dict(model, base_vae)
|
2022-11-03 04:10:53 +00:00
|
|
|
loaded_vae_file = None
|
2022-11-02 05:51:46 +00:00
|
|
|
delete_base_vae()
|
|
|
|
|
|
|
|
|
2022-10-30 14:54:31 +00:00
|
|
|
def get_filename(filepath):
|
2023-01-14 16:56:09 +00:00
|
|
|
return os.path.basename(filepath)
|
|
|
|
|
|
|
|
|
|
|
|
def refresh_vae_list():
|
|
|
|
vae_dict.clear()
|
|
|
|
|
|
|
|
paths = [
|
|
|
|
os.path.join(sd_models.model_path, '**/*.vae.ckpt'),
|
|
|
|
os.path.join(sd_models.model_path, '**/*.vae.pt'),
|
|
|
|
os.path.join(sd_models.model_path, '**/*.vae.safetensors'),
|
|
|
|
os.path.join(vae_path, '**/*.ckpt'),
|
|
|
|
os.path.join(vae_path, '**/*.pt'),
|
|
|
|
os.path.join(vae_path, '**/*.safetensors'),
|
2022-10-30 14:54:31 +00:00
|
|
|
]
|
2023-01-14 16:56:09 +00:00
|
|
|
|
|
|
|
if shared.cmd_opts.ckpt_dir is not None and os.path.isdir(shared.cmd_opts.ckpt_dir):
|
|
|
|
paths += [
|
|
|
|
os.path.join(shared.cmd_opts.ckpt_dir, '**/*.vae.ckpt'),
|
|
|
|
os.path.join(shared.cmd_opts.ckpt_dir, '**/*.vae.pt'),
|
|
|
|
os.path.join(shared.cmd_opts.ckpt_dir, '**/*.vae.safetensors'),
|
|
|
|
]
|
|
|
|
|
2023-01-17 14:50:41 +00:00
|
|
|
if shared.cmd_opts.vae_dir is not None and os.path.isdir(shared.cmd_opts.vae_dir):
|
|
|
|
paths += [
|
|
|
|
os.path.join(shared.cmd_opts.vae_dir, '**/*.ckpt'),
|
|
|
|
os.path.join(shared.cmd_opts.vae_dir, '**/*.pt'),
|
|
|
|
os.path.join(shared.cmd_opts.vae_dir, '**/*.safetensors'),
|
|
|
|
]
|
|
|
|
|
2023-01-14 16:56:09 +00:00
|
|
|
candidates = []
|
|
|
|
for path in paths:
|
|
|
|
candidates += glob.iglob(path, recursive=True)
|
|
|
|
|
2022-10-30 14:54:31 +00:00
|
|
|
for filepath in candidates:
|
|
|
|
name = get_filename(filepath)
|
2023-01-14 16:56:09 +00:00
|
|
|
vae_dict[name] = filepath
|
|
|
|
|
|
|
|
|
|
|
|
def find_vae_near_checkpoint(checkpoint_file):
|
|
|
|
checkpoint_path = os.path.splitext(checkpoint_file)[0]
|
|
|
|
for vae_location in [checkpoint_path + ".vae.pt", checkpoint_path + ".vae.ckpt", checkpoint_path + ".vae.safetensors"]:
|
|
|
|
if os.path.isfile(vae_location):
|
|
|
|
return vae_location
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
def resolve_vae(checkpoint_file):
|
|
|
|
if shared.cmd_opts.vae_path is not None:
|
|
|
|
return shared.cmd_opts.vae_path, 'from commandline argument'
|
|
|
|
|
2023-01-15 21:44:46 +00:00
|
|
|
is_automatic = shared.opts.sd_vae in {"Automatic", "auto"} # "auto" for people with old config
|
|
|
|
|
2023-01-14 16:56:09 +00:00
|
|
|
vae_near_checkpoint = find_vae_near_checkpoint(checkpoint_file)
|
2023-01-15 21:44:46 +00:00
|
|
|
if vae_near_checkpoint is not None and (shared.opts.sd_vae_as_default or is_automatic):
|
2023-01-14 16:56:09 +00:00
|
|
|
return vae_near_checkpoint, 'found near the checkpoint'
|
|
|
|
|
|
|
|
if shared.opts.sd_vae == "None":
|
|
|
|
return None, None
|
|
|
|
|
|
|
|
vae_from_options = vae_dict.get(shared.opts.sd_vae, None)
|
|
|
|
if vae_from_options is not None:
|
|
|
|
return vae_from_options, 'specified in settings'
|
|
|
|
|
2023-01-15 22:28:20 +00:00
|
|
|
if not is_automatic:
|
2023-01-14 16:56:09 +00:00
|
|
|
print(f"Couldn't find VAE named {shared.opts.sd_vae}; using None instead")
|
|
|
|
|
|
|
|
return None, None
|
|
|
|
|
|
|
|
|
2023-01-19 07:39:51 +00:00
|
|
|
def load_vae_dict(filename, map_location):
|
|
|
|
vae_ckpt = sd_models.read_state_dict(filename, map_location=map_location)
|
|
|
|
vae_dict_1 = {k: v for k, v in vae_ckpt.items() if k[0:4] != "loss" and k not in vae_ignore_keys}
|
|
|
|
return vae_dict_1
|
|
|
|
|
|
|
|
|
2023-01-14 16:56:09 +00:00
|
|
|
def load_vae(model, vae_file=None, vae_source="from unknown source"):
|
|
|
|
global vae_dict, loaded_vae_file
|
2022-10-31 08:19:34 +00:00
|
|
|
# save_settings = False
|
|
|
|
|
2022-12-25 12:49:25 +00:00
|
|
|
cache_enabled = shared.opts.sd_vae_checkpoint_cache > 0
|
|
|
|
|
2022-10-30 14:54:31 +00:00
|
|
|
if vae_file:
|
2022-12-25 12:49:25 +00:00
|
|
|
if cache_enabled and vae_file in checkpoints_loaded:
|
|
|
|
# use vae checkpoint cache
|
2023-01-14 16:56:09 +00:00
|
|
|
print(f"Loading VAE weights {vae_source}: cached {get_filename(vae_file)}")
|
2022-12-25 12:49:25 +00:00
|
|
|
store_base_vae(model)
|
|
|
|
_load_vae_dict(model, checkpoints_loaded[vae_file])
|
|
|
|
else:
|
2023-01-14 16:56:09 +00:00
|
|
|
assert os.path.isfile(vae_file), f"VAE {vae_source} doesn't exist: {vae_file}"
|
|
|
|
print(f"Loading VAE weights {vae_source}: {vae_file}")
|
2022-12-25 12:49:25 +00:00
|
|
|
store_base_vae(model)
|
2023-01-09 16:58:35 +00:00
|
|
|
|
2023-01-19 07:39:51 +00:00
|
|
|
vae_dict_1 = load_vae_dict(vae_file, map_location=shared.weight_load_location)
|
2022-12-25 12:49:25 +00:00
|
|
|
_load_vae_dict(model, vae_dict_1)
|
|
|
|
|
|
|
|
if cache_enabled:
|
|
|
|
# cache newly loaded vae
|
|
|
|
checkpoints_loaded[vae_file] = vae_dict_1.copy()
|
|
|
|
|
|
|
|
# clean up cache if limit is reached
|
|
|
|
if cache_enabled:
|
|
|
|
while len(checkpoints_loaded) > shared.opts.sd_vae_checkpoint_cache + 1: # we need to count the current model
|
|
|
|
checkpoints_loaded.popitem(last=False) # LRU
|
2022-10-30 14:54:31 +00:00
|
|
|
|
2022-11-02 05:51:46 +00:00
|
|
|
# If vae used is not in dict, update it
|
|
|
|
# It will be removed on refresh though
|
2022-10-30 14:54:31 +00:00
|
|
|
vae_opt = get_filename(vae_file)
|
|
|
|
if vae_opt not in vae_dict:
|
|
|
|
vae_dict[vae_opt] = vae_file
|
2023-01-14 16:56:09 +00:00
|
|
|
|
2022-11-13 04:11:14 +00:00
|
|
|
elif loaded_vae_file:
|
2022-11-02 15:54:09 +00:00
|
|
|
restore_base_vae(model)
|
2022-10-30 14:54:31 +00:00
|
|
|
|
2022-11-02 05:51:46 +00:00
|
|
|
loaded_vae_file = vae_file
|
|
|
|
|
|
|
|
|
|
|
|
# don't call this from outside
|
2022-11-18 18:27:54 +00:00
|
|
|
def _load_vae_dict(model, vae_dict_1):
|
2022-11-02 15:54:09 +00:00
|
|
|
model.first_stage_model.load_state_dict(vae_dict_1)
|
2022-10-30 14:54:31 +00:00
|
|
|
model.first_stage_model.to(devices.dtype_vae)
|
2022-11-02 05:51:46 +00:00
|
|
|
|
2023-01-09 16:58:35 +00:00
|
|
|
|
2022-11-03 04:10:53 +00:00
|
|
|
def clear_loaded_vae():
|
|
|
|
global loaded_vae_file
|
|
|
|
loaded_vae_file = None
|
2022-11-02 05:51:46 +00:00
|
|
|
|
2023-01-09 16:58:35 +00:00
|
|
|
|
2023-01-14 16:56:09 +00:00
|
|
|
unspecified = object()
|
|
|
|
|
|
|
|
|
|
|
|
def reload_vae_weights(sd_model=None, vae_file=unspecified):
|
2022-11-02 05:51:46 +00:00
|
|
|
from modules import lowvram, devices, sd_hijack
|
|
|
|
|
|
|
|
if not sd_model:
|
|
|
|
sd_model = shared.sd_model
|
|
|
|
|
|
|
|
checkpoint_info = sd_model.sd_checkpoint_info
|
|
|
|
checkpoint_file = checkpoint_info.filename
|
2023-01-14 16:56:09 +00:00
|
|
|
|
|
|
|
if vae_file == unspecified:
|
|
|
|
vae_file, vae_source = resolve_vae(checkpoint_file)
|
|
|
|
else:
|
|
|
|
vae_source = "from function argument"
|
2022-11-02 05:51:46 +00:00
|
|
|
|
|
|
|
if loaded_vae_file == vae_file:
|
|
|
|
return
|
|
|
|
|
|
|
|
if shared.cmd_opts.lowvram or shared.cmd_opts.medvram:
|
|
|
|
lowvram.send_everything_to_cpu()
|
|
|
|
else:
|
|
|
|
sd_model.to(devices.cpu)
|
|
|
|
|
|
|
|
sd_hijack.model_hijack.undo_hijack(sd_model)
|
|
|
|
|
2023-01-14 16:56:09 +00:00
|
|
|
load_vae(sd_model, vae_file, vae_source)
|
2022-11-02 05:51:46 +00:00
|
|
|
|
|
|
|
sd_hijack.model_hijack.hijack(sd_model)
|
|
|
|
script_callbacks.model_loaded_callback(sd_model)
|
|
|
|
|
|
|
|
if not shared.cmd_opts.lowvram and not shared.cmd_opts.medvram:
|
|
|
|
sd_model.to(devices.device)
|
|
|
|
|
2023-01-14 16:56:09 +00:00
|
|
|
print("VAE weights loaded.")
|
2022-11-02 05:51:46 +00:00
|
|
|
return sd_model
|