Skip to content

Commit

Permalink
fix for incorrect model weight loading for AUTOMATIC1111#814
Browse files Browse the repository at this point in the history
  • Loading branch information
AUTOMATIC1111 committed Sep 29, 2022
1 parent 965dcf4 commit c715ef0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
9 changes: 9 additions & 0 deletions modules/sd_hijack.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,7 @@ def hijack(self, m):

model_embeddings.token_embedding = EmbeddingsWithFixes(model_embeddings.token_embedding, self)
m.cond_stage_model = FrozenCLIPEmbedderWithCustomWords(m.cond_stage_model, self)

self.clip = m.cond_stage_model

if cmd_opts.opt_split_attention_v1:
Expand All @@ -263,6 +264,14 @@ def flatten(el):

self.layers = flatten(m)

def undo_hijack(self, m):
if type(m.cond_stage_model) == FrozenCLIPEmbedderWithCustomWords:
m.cond_stage_model = m.cond_stage_model.wrapped

model_embeddings = m.cond_stage_model.transformer.text_model.embeddings
if type(model_embeddings.token_embedding) == EmbeddingsWithFixes:
model_embeddings.token_embedding = model_embeddings.token_embedding.wrapped

def apply_circular(self, enable):
if self.circular_enabled == enable:
return
Expand Down
6 changes: 5 additions & 1 deletion modules/sd_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def load_model():


def reload_model_weights(sd_model, info=None):
from modules import lowvram, devices
from modules import lowvram, devices, sd_hijack
checkpoint_info = info or select_checkpoint()

if sd_model.sd_model_checkpint == checkpoint_info.filename:
Expand All @@ -148,8 +148,12 @@ def reload_model_weights(sd_model, info=None):
else:
sd_model.to(devices.cpu)

sd_hijack.model_hijack.undo_hijack(sd_model)

load_model_weights(sd_model, checkpoint_info.filename, checkpoint_info.hash)

sd_hijack.model_hijack.hijack(sd_model)

if not shared.cmd_opts.lowvram and not shared.cmd_opts.medvram:
sd_model.to(devices.device)

Expand Down

0 comments on commit c715ef0

Please sign in to comment.