aboutsummaryrefslogtreecommitdiff
path: root/modules/sd_models.py
diff options
context:
space:
mode:
authorGreendayle <Greendayle>2022-10-07 18:31:49 +0200
committerGreendayle <Greendayle>2022-10-07 18:31:49 +0200
commit537da7a304adff95fb2ed8337f7a764d08f67c46 (patch)
tree4a8b2c23d7c870314083d70e2d82edd9acbe677c /modules/sd_models.py
parent4320f386d9641c7c234589c4cb0c0c6cbeb156ad (diff)
parentf7c787eb7c295c27439f4fbdf78c26b8389560be (diff)
Merge branch 'master' into dev/deepdanbooru
Diffstat (limited to 'modules/sd_models.py')
-rw-r--r--modules/sd_models.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/sd_models.py b/modules/sd_models.py
index 5f992064..8f794b47 100644
--- a/modules/sd_models.py
+++ b/modules/sd_models.py
@@ -134,6 +134,14 @@ def load_model_weights(model, checkpoint_file, sd_model_hash):
devices.dtype = torch.float32 if shared.cmd_opts.no_half else torch.float16
+ vae_file = os.path.splitext(checkpoint_file)[0] + ".vae.pt"
+ if os.path.exists(vae_file):
+ print(f"Loading VAE weights from: {vae_file}")
+ vae_ckpt = torch.load(vae_file, map_location="cpu")
+ vae_dict = {k: v for k, v in vae_ckpt["state_dict"].items() if k[0:4] != "loss"}
+
+ model.first_stage_model.load_state_dict(vae_dict)
+
model.sd_model_hash = sd_model_hash
model.sd_model_checkpint = checkpoint_file