Skip to content

Commit

Permalink
HOT fix: fix middle_block string to get all possible middle_block keys
Browse files Browse the repository at this point in the history
  • Loading branch information
wkpark committed Oct 21, 2023
1 parent bfb79fa commit 0f0cae2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/model_mixer.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ def _all_blocks(isxl=False):
blocks = [ base_prefix ]
for i in range(0, BLOCKLEN):
blocks.append(f"input_blocks.{i}.")
blocks.append("middle_block.1.")
blocks.append("middle_block.")
for i in range(0, BLOCKLEN):
blocks.append(f"output_blocks.{i}.")
return blocks
Expand Down

0 comments on commit 0f0cae2

Please sign in to comment.