Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion stable_diffusion/stable_diffusion/model_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,17 @@ def map_vae_weights(key, value):
if "upsamplers" in key:
key = key.replace("upsamplers.0.conv", "upsample")

# Map attention layers
# Map attention layers in SD-2-1-base:VAE
if "key" in key:
key = key.replace("key", "key_proj")
if "proj_attn" in key:
key = key.replace("proj_attn", "out_proj")
if "query" in key:
key = key.replace("query", "query_proj")
if "value" in key:
key = key.replace("value", "value_proj")

# Map attention layers in SDXL Turbo
if "to_k" in key:
key = key.replace("to_k", "key_proj")
if "to_out.0" in key:
Expand All @@ -140,6 +150,7 @@ def map_vae_weights(key, value):
if "to_v" in key:
key = key.replace("to_v", "value_proj")


# Map the mid block
if "mid_block.resnets.0" in key:
key = key.replace("mid_block.resnets.0", "mid_blocks.0")
Expand Down