Skip to content

Instantly share code, notes, and snippets.

@akii-i
Last active July 18, 2023 19:13
Show Gist options
  • Save akii-i/035c1efec0dbf467a38e010aaa96df23 to your computer and use it in GitHub Desktop.
Save akii-i/035c1efec0dbf467a38e010aaa96df23 to your computer and use it in GitHub Desktop.
LORA format conversion from cloneofsimo lora format to AUTOMATIC1111 webui format (kohya's format)
# Convert cloneofsimo lora format to AUTOMATIC1111 webui format (kohya's format)
# Will generate extra embedding files along with the converted lora
# Usage: python lora_convert.py path_to_lora output_folder [--overwrite]
# path_to_lora_file : path to lora safetensors in cloneofsimo lora format
# output_folder : path to folder for results in AUTOMATIC1111 webui format
# overwrite : overwrite the results in output_folder
# Example: python lora_convert.py .\lora_krk.safetensors .\
from safetensors import safe_open
from safetensors.torch import save_file
import os
import argparse
parser = argparse.ArgumentParser()
parser.add_argument('path_to_lora_file', type=str, help="path to lora safetensors in cloneofsimo lora format")
parser.add_argument("output_folder", type=str, help="path to folder for results in AUTOMATIC1111 webui format")
parser.add_argument('-o', '--overwrite', default=False, action='store_true')
args = parser.parse_args()
def main():
if not os.path.exists(args.output_folder):
os.makedirs(args.output_folder)
output_lora_filename = os.path.join(args.output_folder, 'converted_' + os.path.basename(args.path_to_lora_file))
if not args.overwrite:
assert not os.path.exists(output_lora_filename), f"converted files existing, try use --overwrite"
lora = safe_open(args.path_to_lora_file, framework="pt", device="cpu")
def make_filename(name):
filename_badchars = '\\/:*?\"<>|'
for c in filename_badchars:
name = name.replace(c, '')
return name
converted_lora = dict()
lora_type = 'extended'
lora_keys = list(lora.keys())
if len(lora_keys) < 544:
lora_type = 'default'
for key in lora_keys:
if key in key_dict[lora_type]: # lora network layers
converted_lora[key_dict[lora_type][key]] = lora.get_tensor(key)
else: # extra embeddings
fn = os.path.join(args.output_folder, 'embedding_' + make_filename(key) + '.safetensors')
print('Write to', fn)
save_file({key: lora.get_tensor(key)}, fn)
print('Write to', output_lora_filename)
save_file(converted_lora, output_lora_filename)
key_dict = {
"default": {
"text_encoder:0:down": "lora_te_text_model_encoder_layers_0_self_attn_k_proj.lora_down.weight",
"text_encoder:0:up": "lora_te_text_model_encoder_layers_0_self_attn_k_proj.lora_up.weight",
"text_encoder:1:down": "lora_te_text_model_encoder_layers_0_self_attn_v_proj.lora_down.weight",
"text_encoder:1:up": "lora_te_text_model_encoder_layers_0_self_attn_v_proj.lora_up.weight",
"text_encoder:2:down": "lora_te_text_model_encoder_layers_0_self_attn_q_proj.lora_down.weight",
"text_encoder:2:up": "lora_te_text_model_encoder_layers_0_self_attn_q_proj.lora_up.weight",
"text_encoder:3:down": "lora_te_text_model_encoder_layers_0_self_attn_out_proj.lora_down.weight",
"text_encoder:3:up": "lora_te_text_model_encoder_layers_0_self_attn_out_proj.lora_up.weight",
"text_encoder:4:down": "lora_te_text_model_encoder_layers_1_self_attn_k_proj.lora_down.weight",
"text_encoder:4:up": "lora_te_text_model_encoder_layers_1_self_attn_k_proj.lora_up.weight",
"text_encoder:5:down": "lora_te_text_model_encoder_layers_1_self_attn_v_proj.lora_down.weight",
"text_encoder:5:up": "lora_te_text_model_encoder_layers_1_self_attn_v_proj.lora_up.weight",
"text_encoder:6:down": "lora_te_text_model_encoder_layers_1_self_attn_q_proj.lora_down.weight",
"text_encoder:6:up": "lora_te_text_model_encoder_layers_1_self_attn_q_proj.lora_up.weight",
"text_encoder:7:down": "lora_te_text_model_encoder_layers_1_self_attn_out_proj.lora_down.weight",
"text_encoder:7:up": "lora_te_text_model_encoder_layers_1_self_attn_out_proj.lora_up.weight",
"text_encoder:8:down": "lora_te_text_model_encoder_layers_2_self_attn_k_proj.lora_down.weight",
"text_encoder:8:up": "lora_te_text_model_encoder_layers_2_self_attn_k_proj.lora_up.weight",
"text_encoder:9:down": "lora_te_text_model_encoder_layers_2_self_attn_v_proj.lora_down.weight",
"text_encoder:9:up": "lora_te_text_model_encoder_layers_2_self_attn_v_proj.lora_up.weight",
"text_encoder:10:down": "lora_te_text_model_encoder_layers_2_self_attn_q_proj.lora_down.weight",
"text_encoder:10:up": "lora_te_text_model_encoder_layers_2_self_attn_q_proj.lora_up.weight",
"text_encoder:11:down": "lora_te_text_model_encoder_layers_2_self_attn_out_proj.lora_down.weight",
"text_encoder:11:up": "lora_te_text_model_encoder_layers_2_self_attn_out_proj.lora_up.weight",
"text_encoder:12:down": "lora_te_text_model_encoder_layers_3_self_attn_k_proj.lora_down.weight",
"text_encoder:12:up": "lora_te_text_model_encoder_layers_3_self_attn_k_proj.lora_up.weight",
"text_encoder:13:down": "lora_te_text_model_encoder_layers_3_self_attn_v_proj.lora_down.weight",
"text_encoder:13:up": "lora_te_text_model_encoder_layers_3_self_attn_v_proj.lora_up.weight",
"text_encoder:14:down": "lora_te_text_model_encoder_layers_3_self_attn_q_proj.lora_down.weight",
"text_encoder:14:up": "lora_te_text_model_encoder_layers_3_self_attn_q_proj.lora_up.weight",
"text_encoder:15:down": "lora_te_text_model_encoder_layers_3_self_attn_out_proj.lora_down.weight",
"text_encoder:15:up": "lora_te_text_model_encoder_layers_3_self_attn_out_proj.lora_up.weight",
"text_encoder:16:down": "lora_te_text_model_encoder_layers_4_self_attn_k_proj.lora_down.weight",
"text_encoder:16:up": "lora_te_text_model_encoder_layers_4_self_attn_k_proj.lora_up.weight",
"text_encoder:17:down": "lora_te_text_model_encoder_layers_4_self_attn_v_proj.lora_down.weight",
"text_encoder:17:up": "lora_te_text_model_encoder_layers_4_self_attn_v_proj.lora_up.weight",
"text_encoder:18:down": "lora_te_text_model_encoder_layers_4_self_attn_q_proj.lora_down.weight",
"text_encoder:18:up": "lora_te_text_model_encoder_layers_4_self_attn_q_proj.lora_up.weight",
"text_encoder:19:down": "lora_te_text_model_encoder_layers_4_self_attn_out_proj.lora_down.weight",
"text_encoder:19:up": "lora_te_text_model_encoder_layers_4_self_attn_out_proj.lora_up.weight",
"text_encoder:20:down": "lora_te_text_model_encoder_layers_5_self_attn_k_proj.lora_down.weight",
"text_encoder:20:up": "lora_te_text_model_encoder_layers_5_self_attn_k_proj.lora_up.weight",
"text_encoder:21:down": "lora_te_text_model_encoder_layers_5_self_attn_v_proj.lora_down.weight",
"text_encoder:21:up": "lora_te_text_model_encoder_layers_5_self_attn_v_proj.lora_up.weight",
"text_encoder:22:down": "lora_te_text_model_encoder_layers_5_self_attn_q_proj.lora_down.weight",
"text_encoder:22:up": "lora_te_text_model_encoder_layers_5_self_attn_q_proj.lora_up.weight",
"text_encoder:23:down": "lora_te_text_model_encoder_layers_5_self_attn_out_proj.lora_down.weight",
"text_encoder:23:up": "lora_te_text_model_encoder_layers_5_self_attn_out_proj.lora_up.weight",
"text_encoder:24:down": "lora_te_text_model_encoder_layers_6_self_attn_k_proj.lora_down.weight",
"text_encoder:24:up": "lora_te_text_model_encoder_layers_6_self_attn_k_proj.lora_up.weight",
"text_encoder:25:down": "lora_te_text_model_encoder_layers_6_self_attn_v_proj.lora_down.weight",
"text_encoder:25:up": "lora_te_text_model_encoder_layers_6_self_attn_v_proj.lora_up.weight",
"text_encoder:26:down": "lora_te_text_model_encoder_layers_6_self_attn_q_proj.lora_down.weight",
"text_encoder:26:up": "lora_te_text_model_encoder_layers_6_self_attn_q_proj.lora_up.weight",
"text_encoder:27:down": "lora_te_text_model_encoder_layers_6_self_attn_out_proj.lora_down.weight",
"text_encoder:27:up": "lora_te_text_model_encoder_layers_6_self_attn_out_proj.lora_up.weight",
"text_encoder:28:down": "lora_te_text_model_encoder_layers_7_self_attn_k_proj.lora_down.weight",
"text_encoder:28:up": "lora_te_text_model_encoder_layers_7_self_attn_k_proj.lora_up.weight",
"text_encoder:29:down": "lora_te_text_model_encoder_layers_7_self_attn_v_proj.lora_down.weight",
"text_encoder:29:up": "lora_te_text_model_encoder_layers_7_self_attn_v_proj.lora_up.weight",
"text_encoder:30:down": "lora_te_text_model_encoder_layers_7_self_attn_q_proj.lora_down.weight",
"text_encoder:30:up": "lora_te_text_model_encoder_layers_7_self_attn_q_proj.lora_up.weight",
"text_encoder:31:down": "lora_te_text_model_encoder_layers_7_self_attn_out_proj.lora_down.weight",
"text_encoder:31:up": "lora_te_text_model_encoder_layers_7_self_attn_out_proj.lora_up.weight",
"text_encoder:32:down": "lora_te_text_model_encoder_layers_8_self_attn_k_proj.lora_down.weight",
"text_encoder:32:up": "lora_te_text_model_encoder_layers_8_self_attn_k_proj.lora_up.weight",
"text_encoder:33:down": "lora_te_text_model_encoder_layers_8_self_attn_v_proj.lora_down.weight",
"text_encoder:33:up": "lora_te_text_model_encoder_layers_8_self_attn_v_proj.lora_up.weight",
"text_encoder:34:down": "lora_te_text_model_encoder_layers_8_self_attn_q_proj.lora_down.weight",
"text_encoder:34:up": "lora_te_text_model_encoder_layers_8_self_attn_q_proj.lora_up.weight",
"text_encoder:35:down": "lora_te_text_model_encoder_layers_8_self_attn_out_proj.lora_down.weight",
"text_encoder:35:up": "lora_te_text_model_encoder_layers_8_self_attn_out_proj.lora_up.weight",
"text_encoder:36:down": "lora_te_text_model_encoder_layers_9_self_attn_k_proj.lora_down.weight",
"text_encoder:36:up": "lora_te_text_model_encoder_layers_9_self_attn_k_proj.lora_up.weight",
"text_encoder:37:down": "lora_te_text_model_encoder_layers_9_self_attn_v_proj.lora_down.weight",
"text_encoder:37:up": "lora_te_text_model_encoder_layers_9_self_attn_v_proj.lora_up.weight",
"text_encoder:38:down": "lora_te_text_model_encoder_layers_9_self_attn_q_proj.lora_down.weight",
"text_encoder:38:up": "lora_te_text_model_encoder_layers_9_self_attn_q_proj.lora_up.weight",
"text_encoder:39:down": "lora_te_text_model_encoder_layers_9_self_attn_out_proj.lora_down.weight",
"text_encoder:39:up": "lora_te_text_model_encoder_layers_9_self_attn_out_proj.lora_up.weight",
"text_encoder:40:down": "lora_te_text_model_encoder_layers_10_self_attn_k_proj.lora_down.weight",
"text_encoder:40:up": "lora_te_text_model_encoder_layers_10_self_attn_k_proj.lora_up.weight",
"text_encoder:41:down": "lora_te_text_model_encoder_layers_10_self_attn_v_proj.lora_down.weight",
"text_encoder:41:up": "lora_te_text_model_encoder_layers_10_self_attn_v_proj.lora_up.weight",
"text_encoder:42:down": "lora_te_text_model_encoder_layers_10_self_attn_q_proj.lora_down.weight",
"text_encoder:42:up": "lora_te_text_model_encoder_layers_10_self_attn_q_proj.lora_up.weight",
"text_encoder:43:down": "lora_te_text_model_encoder_layers_10_self_attn_out_proj.lora_down.weight",
"text_encoder:43:up": "lora_te_text_model_encoder_layers_10_self_attn_out_proj.lora_up.weight",
"text_encoder:44:down": "lora_te_text_model_encoder_layers_11_self_attn_k_proj.lora_down.weight",
"text_encoder:44:up": "lora_te_text_model_encoder_layers_11_self_attn_k_proj.lora_up.weight",
"text_encoder:45:down": "lora_te_text_model_encoder_layers_11_self_attn_v_proj.lora_down.weight",
"text_encoder:45:up": "lora_te_text_model_encoder_layers_11_self_attn_v_proj.lora_up.weight",
"text_encoder:46:down": "lora_te_text_model_encoder_layers_11_self_attn_q_proj.lora_down.weight",
"text_encoder:46:up": "lora_te_text_model_encoder_layers_11_self_attn_q_proj.lora_up.weight",
"text_encoder:47:down": "lora_te_text_model_encoder_layers_11_self_attn_out_proj.lora_down.weight",
"text_encoder:47:up": "lora_te_text_model_encoder_layers_11_self_attn_out_proj.lora_up.weight",
"unet:0:down": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:0:up": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:1:down": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:1:up": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:2:down": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:2:up": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:3:down": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:3:up": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:4:down": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:4:up": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:5:down": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:5:up": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:6:down": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:6:up": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:7:down": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:7:up": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:8:down": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:8:up": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:9:down": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:9:up": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:10:down": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:10:up": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:11:down": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:11:up": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:12:down": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:12:up": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:13:down": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:13:up": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:14:down": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:14:up": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:15:down": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:15:up": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:16:down": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:16:up": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:17:down": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:17:up": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:18:down": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:18:up": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:19:down": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:19:up": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:20:down": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:20:up": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:21:down": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:21:up": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:22:down": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:22:up": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:23:down": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:23:up": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:24:down": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:24:up": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:25:down": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:25:up": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:26:down": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:26:up": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:27:down": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:27:up": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:28:down": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:28:up": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:29:down": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:29:up": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:30:down": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:30:up": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:31:down": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:31:up": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:32:down": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:32:up": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:33:down": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:33:up": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:34:down": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:34:up": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:35:down": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:35:up": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:36:down": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:36:up": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:37:down": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:37:up": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:38:down": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:38:up": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:39:down": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:39:up": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:40:down": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:40:up": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:41:down": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:41:up": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:42:down": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:42:up": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:43:down": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:43:up": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:44:down": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:44:up": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:45:down": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:45:up": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:46:down": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:46:up": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:47:down": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:47:up": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:48:down": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:48:up": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:49:down": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:49:up": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:50:down": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:50:up": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:51:down": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:51:up": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:52:down": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:52:up": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:53:down": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:53:up": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:54:down": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:54:up": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:55:down": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:55:up": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:56:down": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:56:up": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:57:down": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:57:up": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:58:down": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:58:up": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:59:down": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:59:up": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:60:down": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:60:up": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:61:down": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:61:up": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:62:down": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:62:up": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:63:down": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:63:up": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:64:down": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:64:up": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:65:down": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:65:up": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:66:down": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:66:up": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:67:down": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:67:up": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:68:down": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:68:up": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:69:down": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:69:up": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:70:down": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:70:up": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:71:down": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:71:up": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:72:down": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:72:up": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:73:down": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:73:up": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:74:down": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:74:up": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:75:down": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:75:up": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:76:down": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:76:up": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:77:down": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:77:up": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:78:down": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:78:up": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:79:down": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:79:up": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:80:down": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:80:up": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:81:down": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:81:up": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:82:down": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:82:up": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:83:down": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:83:up": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:84:down": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:84:up": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:85:down": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:85:up": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:86:down": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:86:up": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:87:down": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:87:up": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:88:down": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:88:up": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:89:down": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:89:up": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:90:down": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:90:up": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:91:down": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:91:up": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:92:down": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:92:up": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:93:down": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:93:up": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:94:down": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:94:up": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:95:down": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:95:up": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:96:down": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:96:up": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:97:down": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:97:up": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:98:down": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:98:up": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:99:down": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:99:up": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:100:down": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:100:up": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:101:down": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:101:up": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:102:down": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:102:up": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:103:down": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:103:up": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:104:down": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:104:up": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:105:down": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:105:up": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:106:down": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:106:up": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:107:down": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:107:up": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:108:down": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:108:up": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:109:down": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:109:up": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:110:down": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:110:up": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:111:down": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:111:up": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:112:down": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:112:up": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:113:down": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:113:up": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:114:down": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:114:up": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:115:down": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:115:up": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:116:down": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:116:up": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:117:down": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:117:up": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:118:down": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:118:up": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:119:down": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:119:up": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:120:down": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:120:up": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:121:down": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:121:up": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:122:down": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:122:up": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:123:down": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:123:up": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:124:down": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:124:up": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:125:down": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:125:up": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:126:down": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:126:up": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:127:down": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:127:up": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:128:down": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:128:up": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:129:down": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:129:up": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:130:down": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:130:up": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:131:down": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:131:up": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:132:down": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:132:up": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:133:down": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:133:up": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:134:down": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:134:up": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:135:down": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:135:up": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:136:down": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:136:up": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:137:down": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:137:up": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:138:down": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:138:up": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:139:down": "lora_unet_mid_block_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:139:up": "lora_unet_mid_block_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:140:down": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:140:up": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:141:down": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:141:up": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:142:down": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:142:up": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:143:down": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:143:up": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_up.weight"
},
"extended": {
"text_encoder:0:down": "lora_te_text_model_encoder_layers_0_self_attn_k_proj.lora_down.weight",
"text_encoder:0:up": "lora_te_text_model_encoder_layers_0_self_attn_k_proj.lora_up.weight",
"text_encoder:1:down": "lora_te_text_model_encoder_layers_0_self_attn_v_proj.lora_down.weight",
"text_encoder:1:up": "lora_te_text_model_encoder_layers_0_self_attn_v_proj.lora_up.weight",
"text_encoder:2:down": "lora_te_text_model_encoder_layers_0_self_attn_q_proj.lora_down.weight",
"text_encoder:2:up": "lora_te_text_model_encoder_layers_0_self_attn_q_proj.lora_up.weight",
"text_encoder:3:down": "lora_te_text_model_encoder_layers_0_self_attn_out_proj.lora_down.weight",
"text_encoder:3:up": "lora_te_text_model_encoder_layers_0_self_attn_out_proj.lora_up.weight",
"text_encoder:4:down": "lora_te_text_model_encoder_layers_1_self_attn_k_proj.lora_down.weight",
"text_encoder:4:up": "lora_te_text_model_encoder_layers_1_self_attn_k_proj.lora_up.weight",
"text_encoder:5:down": "lora_te_text_model_encoder_layers_1_self_attn_v_proj.lora_down.weight",
"text_encoder:5:up": "lora_te_text_model_encoder_layers_1_self_attn_v_proj.lora_up.weight",
"text_encoder:6:down": "lora_te_text_model_encoder_layers_1_self_attn_q_proj.lora_down.weight",
"text_encoder:6:up": "lora_te_text_model_encoder_layers_1_self_attn_q_proj.lora_up.weight",
"text_encoder:7:down": "lora_te_text_model_encoder_layers_1_self_attn_out_proj.lora_down.weight",
"text_encoder:7:up": "lora_te_text_model_encoder_layers_1_self_attn_out_proj.lora_up.weight",
"text_encoder:8:down": "lora_te_text_model_encoder_layers_2_self_attn_k_proj.lora_down.weight",
"text_encoder:8:up": "lora_te_text_model_encoder_layers_2_self_attn_k_proj.lora_up.weight",
"text_encoder:9:down": "lora_te_text_model_encoder_layers_2_self_attn_v_proj.lora_down.weight",
"text_encoder:9:up": "lora_te_text_model_encoder_layers_2_self_attn_v_proj.lora_up.weight",
"text_encoder:10:down": "lora_te_text_model_encoder_layers_2_self_attn_q_proj.lora_down.weight",
"text_encoder:10:up": "lora_te_text_model_encoder_layers_2_self_attn_q_proj.lora_up.weight",
"text_encoder:11:down": "lora_te_text_model_encoder_layers_2_self_attn_out_proj.lora_down.weight",
"text_encoder:11:up": "lora_te_text_model_encoder_layers_2_self_attn_out_proj.lora_up.weight",
"text_encoder:12:down": "lora_te_text_model_encoder_layers_3_self_attn_k_proj.lora_down.weight",
"text_encoder:12:up": "lora_te_text_model_encoder_layers_3_self_attn_k_proj.lora_up.weight",
"text_encoder:13:down": "lora_te_text_model_encoder_layers_3_self_attn_v_proj.lora_down.weight",
"text_encoder:13:up": "lora_te_text_model_encoder_layers_3_self_attn_v_proj.lora_up.weight",
"text_encoder:14:down": "lora_te_text_model_encoder_layers_3_self_attn_q_proj.lora_down.weight",
"text_encoder:14:up": "lora_te_text_model_encoder_layers_3_self_attn_q_proj.lora_up.weight",
"text_encoder:15:down": "lora_te_text_model_encoder_layers_3_self_attn_out_proj.lora_down.weight",
"text_encoder:15:up": "lora_te_text_model_encoder_layers_3_self_attn_out_proj.lora_up.weight",
"text_encoder:16:down": "lora_te_text_model_encoder_layers_4_self_attn_k_proj.lora_down.weight",
"text_encoder:16:up": "lora_te_text_model_encoder_layers_4_self_attn_k_proj.lora_up.weight",
"text_encoder:17:down": "lora_te_text_model_encoder_layers_4_self_attn_v_proj.lora_down.weight",
"text_encoder:17:up": "lora_te_text_model_encoder_layers_4_self_attn_v_proj.lora_up.weight",
"text_encoder:18:down": "lora_te_text_model_encoder_layers_4_self_attn_q_proj.lora_down.weight",
"text_encoder:18:up": "lora_te_text_model_encoder_layers_4_self_attn_q_proj.lora_up.weight",
"text_encoder:19:down": "lora_te_text_model_encoder_layers_4_self_attn_out_proj.lora_down.weight",
"text_encoder:19:up": "lora_te_text_model_encoder_layers_4_self_attn_out_proj.lora_up.weight",
"text_encoder:20:down": "lora_te_text_model_encoder_layers_5_self_attn_k_proj.lora_down.weight",
"text_encoder:20:up": "lora_te_text_model_encoder_layers_5_self_attn_k_proj.lora_up.weight",
"text_encoder:21:down": "lora_te_text_model_encoder_layers_5_self_attn_v_proj.lora_down.weight",
"text_encoder:21:up": "lora_te_text_model_encoder_layers_5_self_attn_v_proj.lora_up.weight",
"text_encoder:22:down": "lora_te_text_model_encoder_layers_5_self_attn_q_proj.lora_down.weight",
"text_encoder:22:up": "lora_te_text_model_encoder_layers_5_self_attn_q_proj.lora_up.weight",
"text_encoder:23:down": "lora_te_text_model_encoder_layers_5_self_attn_out_proj.lora_down.weight",
"text_encoder:23:up": "lora_te_text_model_encoder_layers_5_self_attn_out_proj.lora_up.weight",
"text_encoder:24:down": "lora_te_text_model_encoder_layers_6_self_attn_k_proj.lora_down.weight",
"text_encoder:24:up": "lora_te_text_model_encoder_layers_6_self_attn_k_proj.lora_up.weight",
"text_encoder:25:down": "lora_te_text_model_encoder_layers_6_self_attn_v_proj.lora_down.weight",
"text_encoder:25:up": "lora_te_text_model_encoder_layers_6_self_attn_v_proj.lora_up.weight",
"text_encoder:26:down": "lora_te_text_model_encoder_layers_6_self_attn_q_proj.lora_down.weight",
"text_encoder:26:up": "lora_te_text_model_encoder_layers_6_self_attn_q_proj.lora_up.weight",
"text_encoder:27:down": "lora_te_text_model_encoder_layers_6_self_attn_out_proj.lora_down.weight",
"text_encoder:27:up": "lora_te_text_model_encoder_layers_6_self_attn_out_proj.lora_up.weight",
"text_encoder:28:down": "lora_te_text_model_encoder_layers_7_self_attn_k_proj.lora_down.weight",
"text_encoder:28:up": "lora_te_text_model_encoder_layers_7_self_attn_k_proj.lora_up.weight",
"text_encoder:29:down": "lora_te_text_model_encoder_layers_7_self_attn_v_proj.lora_down.weight",
"text_encoder:29:up": "lora_te_text_model_encoder_layers_7_self_attn_v_proj.lora_up.weight",
"text_encoder:30:down": "lora_te_text_model_encoder_layers_7_self_attn_q_proj.lora_down.weight",
"text_encoder:30:up": "lora_te_text_model_encoder_layers_7_self_attn_q_proj.lora_up.weight",
"text_encoder:31:down": "lora_te_text_model_encoder_layers_7_self_attn_out_proj.lora_down.weight",
"text_encoder:31:up": "lora_te_text_model_encoder_layers_7_self_attn_out_proj.lora_up.weight",
"text_encoder:32:down": "lora_te_text_model_encoder_layers_8_self_attn_k_proj.lora_down.weight",
"text_encoder:32:up": "lora_te_text_model_encoder_layers_8_self_attn_k_proj.lora_up.weight",
"text_encoder:33:down": "lora_te_text_model_encoder_layers_8_self_attn_v_proj.lora_down.weight",
"text_encoder:33:up": "lora_te_text_model_encoder_layers_8_self_attn_v_proj.lora_up.weight",
"text_encoder:34:down": "lora_te_text_model_encoder_layers_8_self_attn_q_proj.lora_down.weight",
"text_encoder:34:up": "lora_te_text_model_encoder_layers_8_self_attn_q_proj.lora_up.weight",
"text_encoder:35:down": "lora_te_text_model_encoder_layers_8_self_attn_out_proj.lora_down.weight",
"text_encoder:35:up": "lora_te_text_model_encoder_layers_8_self_attn_out_proj.lora_up.weight",
"text_encoder:36:down": "lora_te_text_model_encoder_layers_9_self_attn_k_proj.lora_down.weight",
"text_encoder:36:up": "lora_te_text_model_encoder_layers_9_self_attn_k_proj.lora_up.weight",
"text_encoder:37:down": "lora_te_text_model_encoder_layers_9_self_attn_v_proj.lora_down.weight",
"text_encoder:37:up": "lora_te_text_model_encoder_layers_9_self_attn_v_proj.lora_up.weight",
"text_encoder:38:down": "lora_te_text_model_encoder_layers_9_self_attn_q_proj.lora_down.weight",
"text_encoder:38:up": "lora_te_text_model_encoder_layers_9_self_attn_q_proj.lora_up.weight",
"text_encoder:39:down": "lora_te_text_model_encoder_layers_9_self_attn_out_proj.lora_down.weight",
"text_encoder:39:up": "lora_te_text_model_encoder_layers_9_self_attn_out_proj.lora_up.weight",
"text_encoder:40:down": "lora_te_text_model_encoder_layers_10_self_attn_k_proj.lora_down.weight",
"text_encoder:40:up": "lora_te_text_model_encoder_layers_10_self_attn_k_proj.lora_up.weight",
"text_encoder:41:down": "lora_te_text_model_encoder_layers_10_self_attn_v_proj.lora_down.weight",
"text_encoder:41:up": "lora_te_text_model_encoder_layers_10_self_attn_v_proj.lora_up.weight",
"text_encoder:42:down": "lora_te_text_model_encoder_layers_10_self_attn_q_proj.lora_down.weight",
"text_encoder:42:up": "lora_te_text_model_encoder_layers_10_self_attn_q_proj.lora_up.weight",
"text_encoder:43:down": "lora_te_text_model_encoder_layers_10_self_attn_out_proj.lora_down.weight",
"text_encoder:43:up": "lora_te_text_model_encoder_layers_10_self_attn_out_proj.lora_up.weight",
"text_encoder:44:down": "lora_te_text_model_encoder_layers_11_self_attn_k_proj.lora_down.weight",
"text_encoder:44:up": "lora_te_text_model_encoder_layers_11_self_attn_k_proj.lora_up.weight",
"text_encoder:45:down": "lora_te_text_model_encoder_layers_11_self_attn_v_proj.lora_down.weight",
"text_encoder:45:up": "lora_te_text_model_encoder_layers_11_self_attn_v_proj.lora_up.weight",
"text_encoder:46:down": "lora_te_text_model_encoder_layers_11_self_attn_q_proj.lora_down.weight",
"text_encoder:46:up": "lora_te_text_model_encoder_layers_11_self_attn_q_proj.lora_up.weight",
"text_encoder:47:down": "lora_te_text_model_encoder_layers_11_self_attn_out_proj.lora_down.weight",
"text_encoder:47:up": "lora_te_text_model_encoder_layers_11_self_attn_out_proj.lora_up.weight",
"unet:0:down": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:0:up": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:1:down": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:1:up": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:2:down": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:2:up": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:3:down": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:3:up": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:4:down": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:4:up": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:5:down": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:5:up": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:6:down": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:6:up": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:7:down": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:7:up": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:8:down": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:8:up": "lora_unet_down_blocks_0_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:9:down": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:9:up": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:10:down": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:10:up": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:11:down": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:11:up": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:12:down": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:12:up": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:13:down": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:13:up": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:14:down": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:14:up": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:15:down": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:15:up": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:16:down": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:16:up": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:17:down": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:17:up": "lora_unet_down_blocks_0_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:18:down": "lora_unet_down_blocks_0_resnets_0_conv1.lora_down.weight",
"unet:18:up": "lora_unet_down_blocks_0_resnets_0_conv1.lora_up.weight",
"unet:19:down": "lora_unet_down_blocks_0_resnets_0_time_emb_proj.lora_down.weight",
"unet:19:up": "lora_unet_down_blocks_0_resnets_0_time_emb_proj.lora_up.weight",
"unet:20:down": "lora_unet_down_blocks_0_resnets_0_conv2.lora_down.weight",
"unet:20:up": "lora_unet_down_blocks_0_resnets_0_conv2.lora_up.weight",
"unet:21:down": "lora_unet_down_blocks_0_resnets_1_conv1.lora_down.weight",
"unet:21:up": "lora_unet_down_blocks_0_resnets_1_conv1.lora_up.weight",
"unet:22:down": "lora_unet_down_blocks_0_resnets_1_time_emb_proj.lora_down.weight",
"unet:22:up": "lora_unet_down_blocks_0_resnets_1_time_emb_proj.lora_up.weight",
"unet:23:down": "lora_unet_down_blocks_0_resnets_1_conv2.lora_down.weight",
"unet:23:up": "lora_unet_down_blocks_0_resnets_1_conv2.lora_up.weight",
"unet:24:down": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:24:up": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:25:down": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:25:up": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:26:down": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:26:up": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:27:down": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:27:up": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:28:down": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:28:up": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:29:down": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:29:up": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:30:down": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:30:up": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:31:down": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:31:up": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:32:down": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:32:up": "lora_unet_down_blocks_1_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:33:down": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:33:up": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:34:down": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:34:up": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:35:down": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:35:up": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:36:down": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:36:up": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:37:down": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:37:up": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:38:down": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:38:up": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:39:down": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:39:up": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:40:down": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:40:up": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:41:down": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:41:up": "lora_unet_down_blocks_1_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:42:down": "lora_unet_down_blocks_1_resnets_0_conv1.lora_down.weight",
"unet:42:up": "lora_unet_down_blocks_1_resnets_0_conv1.lora_up.weight",
"unet:43:down": "lora_unet_down_blocks_1_resnets_0_time_emb_proj.lora_down.weight",
"unet:43:up": "lora_unet_down_blocks_1_resnets_0_time_emb_proj.lora_up.weight",
"unet:44:down": "lora_unet_down_blocks_1_resnets_0_conv2.lora_down.weight",
"unet:44:up": "lora_unet_down_blocks_1_resnets_0_conv2.lora_up.weight",
"unet:45:down": "lora_unet_down_blocks_1_resnets_0_conv_shortcut.lora_down.weight",
"unet:45:up": "lora_unet_down_blocks_1_resnets_0_conv_shortcut.lora_up.weight",
"unet:46:down": "lora_unet_down_blocks_1_resnets_1_conv1.lora_down.weight",
"unet:46:up": "lora_unet_down_blocks_1_resnets_1_conv1.lora_up.weight",
"unet:47:down": "lora_unet_down_blocks_1_resnets_1_time_emb_proj.lora_down.weight",
"unet:47:up": "lora_unet_down_blocks_1_resnets_1_time_emb_proj.lora_up.weight",
"unet:48:down": "lora_unet_down_blocks_1_resnets_1_conv2.lora_down.weight",
"unet:48:up": "lora_unet_down_blocks_1_resnets_1_conv2.lora_up.weight",
"unet:49:down": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:49:up": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:50:down": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:50:up": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:51:down": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:51:up": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:52:down": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:52:up": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:53:down": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:53:up": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:54:down": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:54:up": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:55:down": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:55:up": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:56:down": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:56:up": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:57:down": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:57:up": "lora_unet_down_blocks_2_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:58:down": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:58:up": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:59:down": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:59:up": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:60:down": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:60:up": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:61:down": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:61:up": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:62:down": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:62:up": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:63:down": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:63:up": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:64:down": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:64:up": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:65:down": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:65:up": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:66:down": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:66:up": "lora_unet_down_blocks_2_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:67:down": "lora_unet_down_blocks_2_resnets_0_conv1.lora_down.weight",
"unet:67:up": "lora_unet_down_blocks_2_resnets_0_conv1.lora_up.weight",
"unet:68:down": "lora_unet_down_blocks_2_resnets_0_time_emb_proj.lora_down.weight",
"unet:68:up": "lora_unet_down_blocks_2_resnets_0_time_emb_proj.lora_up.weight",
"unet:69:down": "lora_unet_down_blocks_2_resnets_0_conv2.lora_down.weight",
"unet:69:up": "lora_unet_down_blocks_2_resnets_0_conv2.lora_up.weight",
"unet:70:down": "lora_unet_down_blocks_2_resnets_0_conv_shortcut.lora_down.weight",
"unet:70:up": "lora_unet_down_blocks_2_resnets_0_conv_shortcut.lora_up.weight",
"unet:71:down": "lora_unet_down_blocks_2_resnets_1_conv1.lora_down.weight",
"unet:71:up": "lora_unet_down_blocks_2_resnets_1_conv1.lora_up.weight",
"unet:72:down": "lora_unet_down_blocks_2_resnets_1_time_emb_proj.lora_down.weight",
"unet:72:up": "lora_unet_down_blocks_2_resnets_1_time_emb_proj.lora_up.weight",
"unet:73:down": "lora_unet_down_blocks_2_resnets_1_conv2.lora_down.weight",
"unet:73:up": "lora_unet_down_blocks_2_resnets_1_conv2.lora_up.weight",
"unet:74:down": "lora_unet_down_blocks_3_resnets_0_conv1.lora_down.weight",
"unet:74:up": "lora_unet_down_blocks_3_resnets_0_conv1.lora_up.weight",
"unet:75:down": "lora_unet_down_blocks_3_resnets_0_time_emb_proj.lora_down.weight",
"unet:75:up": "lora_unet_down_blocks_3_resnets_0_time_emb_proj.lora_up.weight",
"unet:76:down": "lora_unet_down_blocks_3_resnets_0_conv2.lora_down.weight",
"unet:76:up": "lora_unet_down_blocks_3_resnets_0_conv2.lora_up.weight",
"unet:77:down": "lora_unet_down_blocks_3_resnets_1_conv1.lora_down.weight",
"unet:77:up": "lora_unet_down_blocks_3_resnets_1_conv1.lora_up.weight",
"unet:78:down": "lora_unet_down_blocks_3_resnets_1_time_emb_proj.lora_down.weight",
"unet:78:up": "lora_unet_down_blocks_3_resnets_1_time_emb_proj.lora_up.weight",
"unet:79:down": "lora_unet_down_blocks_3_resnets_1_conv2.lora_down.weight",
"unet:79:up": "lora_unet_down_blocks_3_resnets_1_conv2.lora_up.weight",
"unet:80:down": "lora_unet_up_blocks_0_resnets_0_conv1.lora_down.weight",
"unet:80:up": "lora_unet_up_blocks_0_resnets_0_conv1.lora_up.weight",
"unet:81:down": "lora_unet_up_blocks_0_resnets_0_time_emb_proj.lora_down.weight",
"unet:81:up": "lora_unet_up_blocks_0_resnets_0_time_emb_proj.lora_up.weight",
"unet:82:down": "lora_unet_up_blocks_0_resnets_0_conv2.lora_down.weight",
"unet:82:up": "lora_unet_up_blocks_0_resnets_0_conv2.lora_up.weight",
"unet:83:down": "lora_unet_up_blocks_0_resnets_0_conv_shortcut.lora_down.weight",
"unet:83:up": "lora_unet_up_blocks_0_resnets_0_conv_shortcut.lora_up.weight",
"unet:84:down": "lora_unet_up_blocks_0_resnets_1_conv1.lora_down.weight",
"unet:84:up": "lora_unet_up_blocks_0_resnets_1_conv1.lora_up.weight",
"unet:85:down": "lora_unet_up_blocks_0_resnets_1_time_emb_proj.lora_down.weight",
"unet:85:up": "lora_unet_up_blocks_0_resnets_1_time_emb_proj.lora_up.weight",
"unet:86:down": "lora_unet_up_blocks_0_resnets_1_conv2.lora_down.weight",
"unet:86:up": "lora_unet_up_blocks_0_resnets_1_conv2.lora_up.weight",
"unet:87:down": "lora_unet_up_blocks_0_resnets_1_conv_shortcut.lora_down.weight",
"unet:87:up": "lora_unet_up_blocks_0_resnets_1_conv_shortcut.lora_up.weight",
"unet:88:down": "lora_unet_up_blocks_0_resnets_2_conv1.lora_down.weight",
"unet:88:up": "lora_unet_up_blocks_0_resnets_2_conv1.lora_up.weight",
"unet:89:down": "lora_unet_up_blocks_0_resnets_2_time_emb_proj.lora_down.weight",
"unet:89:up": "lora_unet_up_blocks_0_resnets_2_time_emb_proj.lora_up.weight",
"unet:90:down": "lora_unet_up_blocks_0_resnets_2_conv2.lora_down.weight",
"unet:90:up": "lora_unet_up_blocks_0_resnets_2_conv2.lora_up.weight",
"unet:91:down": "lora_unet_up_blocks_0_resnets_2_conv_shortcut.lora_down.weight",
"unet:91:up": "lora_unet_up_blocks_0_resnets_2_conv_shortcut.lora_up.weight",
"unet:92:down": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:92:up": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:93:down": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:93:up": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:94:down": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:94:up": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:95:down": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:95:up": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:96:down": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:96:up": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:97:down": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:97:up": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:98:down": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:98:up": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:99:down": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:99:up": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:100:down": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:100:up": "lora_unet_up_blocks_1_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:101:down": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:101:up": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:102:down": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:102:up": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:103:down": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:103:up": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:104:down": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:104:up": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:105:down": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:105:up": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:106:down": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:106:up": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:107:down": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:107:up": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:108:down": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:108:up": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:109:down": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:109:up": "lora_unet_up_blocks_1_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:110:down": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:110:up": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:111:down": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:111:up": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:112:down": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:112:up": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:113:down": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:113:up": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:114:down": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:114:up": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:115:down": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:115:up": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:116:down": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:116:up": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:117:down": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:117:up": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:118:down": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:118:up": "lora_unet_up_blocks_1_attentions_2_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:119:down": "lora_unet_up_blocks_1_resnets_0_conv1.lora_down.weight",
"unet:119:up": "lora_unet_up_blocks_1_resnets_0_conv1.lora_up.weight",
"unet:120:down": "lora_unet_up_blocks_1_resnets_0_time_emb_proj.lora_down.weight",
"unet:120:up": "lora_unet_up_blocks_1_resnets_0_time_emb_proj.lora_up.weight",
"unet:121:down": "lora_unet_up_blocks_1_resnets_0_conv2.lora_down.weight",
"unet:121:up": "lora_unet_up_blocks_1_resnets_0_conv2.lora_up.weight",
"unet:122:down": "lora_unet_up_blocks_1_resnets_0_conv_shortcut.lora_down.weight",
"unet:122:up": "lora_unet_up_blocks_1_resnets_0_conv_shortcut.lora_up.weight",
"unet:123:down": "lora_unet_up_blocks_1_resnets_1_conv1.lora_down.weight",
"unet:123:up": "lora_unet_up_blocks_1_resnets_1_conv1.lora_up.weight",
"unet:124:down": "lora_unet_up_blocks_1_resnets_1_time_emb_proj.lora_down.weight",
"unet:124:up": "lora_unet_up_blocks_1_resnets_1_time_emb_proj.lora_up.weight",
"unet:125:down": "lora_unet_up_blocks_1_resnets_1_conv2.lora_down.weight",
"unet:125:up": "lora_unet_up_blocks_1_resnets_1_conv2.lora_up.weight",
"unet:126:down": "lora_unet_up_blocks_1_resnets_1_conv_shortcut.lora_down.weight",
"unet:126:up": "lora_unet_up_blocks_1_resnets_1_conv_shortcut.lora_up.weight",
"unet:127:down": "lora_unet_up_blocks_1_resnets_2_conv1.lora_down.weight",
"unet:127:up": "lora_unet_up_blocks_1_resnets_2_conv1.lora_up.weight",
"unet:128:down": "lora_unet_up_blocks_1_resnets_2_time_emb_proj.lora_down.weight",
"unet:128:up": "lora_unet_up_blocks_1_resnets_2_time_emb_proj.lora_up.weight",
"unet:129:down": "lora_unet_up_blocks_1_resnets_2_conv2.lora_down.weight",
"unet:129:up": "lora_unet_up_blocks_1_resnets_2_conv2.lora_up.weight",
"unet:130:down": "lora_unet_up_blocks_1_resnets_2_conv_shortcut.lora_down.weight",
"unet:130:up": "lora_unet_up_blocks_1_resnets_2_conv_shortcut.lora_up.weight",
"unet:131:down": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:131:up": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:132:down": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:132:up": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:133:down": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:133:up": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:134:down": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:134:up": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:135:down": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:135:up": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:136:down": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:136:up": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:137:down": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:137:up": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:138:down": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:138:up": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:139:down": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:139:up": "lora_unet_up_blocks_2_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:140:down": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:140:up": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:141:down": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:141:up": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:142:down": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:142:up": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:143:down": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:143:up": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:144:down": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:144:up": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:145:down": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:145:up": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:146:down": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:146:up": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:147:down": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:147:up": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:148:down": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:148:up": "lora_unet_up_blocks_2_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:149:down": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:149:up": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:150:down": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:150:up": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:151:down": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:151:up": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:152:down": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:152:up": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:153:down": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:153:up": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:154:down": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:154:up": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:155:down": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:155:up": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:156:down": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:156:up": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:157:down": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:157:up": "lora_unet_up_blocks_2_attentions_2_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:158:down": "lora_unet_up_blocks_2_resnets_0_conv1.lora_down.weight",
"unet:158:up": "lora_unet_up_blocks_2_resnets_0_conv1.lora_up.weight",
"unet:159:down": "lora_unet_up_blocks_2_resnets_0_time_emb_proj.lora_down.weight",
"unet:159:up": "lora_unet_up_blocks_2_resnets_0_time_emb_proj.lora_up.weight",
"unet:160:down": "lora_unet_up_blocks_2_resnets_0_conv2.lora_down.weight",
"unet:160:up": "lora_unet_up_blocks_2_resnets_0_conv2.lora_up.weight",
"unet:161:down": "lora_unet_up_blocks_2_resnets_0_conv_shortcut.lora_down.weight",
"unet:161:up": "lora_unet_up_blocks_2_resnets_0_conv_shortcut.lora_up.weight",
"unet:162:down": "lora_unet_up_blocks_2_resnets_1_conv1.lora_down.weight",
"unet:162:up": "lora_unet_up_blocks_2_resnets_1_conv1.lora_up.weight",
"unet:163:down": "lora_unet_up_blocks_2_resnets_1_time_emb_proj.lora_down.weight",
"unet:163:up": "lora_unet_up_blocks_2_resnets_1_time_emb_proj.lora_up.weight",
"unet:164:down": "lora_unet_up_blocks_2_resnets_1_conv2.lora_down.weight",
"unet:164:up": "lora_unet_up_blocks_2_resnets_1_conv2.lora_up.weight",
"unet:165:down": "lora_unet_up_blocks_2_resnets_1_conv_shortcut.lora_down.weight",
"unet:165:up": "lora_unet_up_blocks_2_resnets_1_conv_shortcut.lora_up.weight",
"unet:166:down": "lora_unet_up_blocks_2_resnets_2_conv1.lora_down.weight",
"unet:166:up": "lora_unet_up_blocks_2_resnets_2_conv1.lora_up.weight",
"unet:167:down": "lora_unet_up_blocks_2_resnets_2_time_emb_proj.lora_down.weight",
"unet:167:up": "lora_unet_up_blocks_2_resnets_2_time_emb_proj.lora_up.weight",
"unet:168:down": "lora_unet_up_blocks_2_resnets_2_conv2.lora_down.weight",
"unet:168:up": "lora_unet_up_blocks_2_resnets_2_conv2.lora_up.weight",
"unet:169:down": "lora_unet_up_blocks_2_resnets_2_conv_shortcut.lora_down.weight",
"unet:169:up": "lora_unet_up_blocks_2_resnets_2_conv_shortcut.lora_up.weight",
"unet:170:down": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:170:up": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:171:down": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:171:up": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:172:down": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:172:up": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:173:down": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:173:up": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:174:down": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:174:up": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:175:down": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:175:up": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:176:down": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:176:up": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:177:down": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:177:up": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:178:down": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:178:up": "lora_unet_up_blocks_3_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:179:down": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:179:up": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:180:down": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:180:up": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:181:down": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:181:up": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:182:down": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:182:up": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:183:down": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:183:up": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:184:down": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:184:up": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:185:down": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:185:up": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:186:down": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:186:up": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:187:down": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:187:up": "lora_unet_up_blocks_3_attentions_1_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:188:down": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:188:up": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:189:down": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:189:up": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:190:down": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:190:up": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:191:down": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:191:up": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:192:down": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:192:up": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:193:down": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:193:up": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:194:down": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:194:up": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:195:down": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:195:up": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:196:down": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:196:up": "lora_unet_up_blocks_3_attentions_2_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:197:down": "lora_unet_up_blocks_3_resnets_0_conv1.lora_down.weight",
"unet:197:up": "lora_unet_up_blocks_3_resnets_0_conv1.lora_up.weight",
"unet:198:down": "lora_unet_up_blocks_3_resnets_0_time_emb_proj.lora_down.weight",
"unet:198:up": "lora_unet_up_blocks_3_resnets_0_time_emb_proj.lora_up.weight",
"unet:199:down": "lora_unet_up_blocks_3_resnets_0_conv2.lora_down.weight",
"unet:199:up": "lora_unet_up_blocks_3_resnets_0_conv2.lora_up.weight",
"unet:200:down": "lora_unet_up_blocks_3_resnets_0_conv_shortcut.lora_down.weight",
"unet:200:up": "lora_unet_up_blocks_3_resnets_0_conv_shortcut.lora_up.weight",
"unet:201:down": "lora_unet_up_blocks_3_resnets_1_conv1.lora_down.weight",
"unet:201:up": "lora_unet_up_blocks_3_resnets_1_conv1.lora_up.weight",
"unet:202:down": "lora_unet_up_blocks_3_resnets_1_time_emb_proj.lora_down.weight",
"unet:202:up": "lora_unet_up_blocks_3_resnets_1_time_emb_proj.lora_up.weight",
"unet:203:down": "lora_unet_up_blocks_3_resnets_1_conv2.lora_down.weight",
"unet:203:up": "lora_unet_up_blocks_3_resnets_1_conv2.lora_up.weight",
"unet:204:down": "lora_unet_up_blocks_3_resnets_1_conv_shortcut.lora_down.weight",
"unet:204:up": "lora_unet_up_blocks_3_resnets_1_conv_shortcut.lora_up.weight",
"unet:205:down": "lora_unet_up_blocks_3_resnets_2_conv1.lora_down.weight",
"unet:205:up": "lora_unet_up_blocks_3_resnets_2_conv1.lora_up.weight",
"unet:206:down": "lora_unet_up_blocks_3_resnets_2_time_emb_proj.lora_down.weight",
"unet:206:up": "lora_unet_up_blocks_3_resnets_2_time_emb_proj.lora_up.weight",
"unet:207:down": "lora_unet_up_blocks_3_resnets_2_conv2.lora_down.weight",
"unet:207:up": "lora_unet_up_blocks_3_resnets_2_conv2.lora_up.weight",
"unet:208:down": "lora_unet_up_blocks_3_resnets_2_conv_shortcut.lora_down.weight",
"unet:208:up": "lora_unet_up_blocks_3_resnets_2_conv_shortcut.lora_up.weight",
"unet:209:down": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn1_to_q.lora_down.weight",
"unet:209:up": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn1_to_q.lora_up.weight",
"unet:210:down": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn1_to_k.lora_down.weight",
"unet:210:up": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn1_to_k.lora_up.weight",
"unet:211:down": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn1_to_v.lora_down.weight",
"unet:211:up": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn1_to_v.lora_up.weight",
"unet:212:down": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_down.weight",
"unet:212:up": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn1_to_out_0.lora_up.weight",
"unet:213:down": "lora_unet_mid_block_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_down.weight",
"unet:213:up": "lora_unet_mid_block_attentions_0_transformer_blocks_0_ff_net_0_proj.lora_up.weight",
"unet:214:down": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn2_to_q.lora_down.weight",
"unet:214:up": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn2_to_q.lora_up.weight",
"unet:215:down": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn2_to_k.lora_down.weight",
"unet:215:up": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn2_to_k.lora_up.weight",
"unet:216:down": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn2_to_v.lora_down.weight",
"unet:216:up": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn2_to_v.lora_up.weight",
"unet:217:down": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_down.weight",
"unet:217:up": "lora_unet_mid_block_attentions_0_transformer_blocks_0_attn2_to_out_0.lora_up.weight",
"unet:218:down": "lora_unet_mid_block_resnets_0_conv1.lora_down.weight",
"unet:218:up": "lora_unet_mid_block_resnets_0_conv1.lora_up.weight",
"unet:219:down": "lora_unet_mid_block_resnets_0_time_emb_proj.lora_down.weight",
"unet:219:up": "lora_unet_mid_block_resnets_0_time_emb_proj.lora_up.weight",
"unet:220:down": "lora_unet_mid_block_resnets_0_conv2.lora_down.weight",
"unet:220:up": "lora_unet_mid_block_resnets_0_conv2.lora_up.weight",
"unet:221:down": "lora_unet_mid_block_resnets_1_conv1.lora_down.weight",
"unet:221:up": "lora_unet_mid_block_resnets_1_conv1.lora_up.weight",
"unet:222:down": "lora_unet_mid_block_resnets_1_time_emb_proj.lora_down.weight",
"unet:222:up": "lora_unet_mid_block_resnets_1_time_emb_proj.lora_up.weight",
"unet:223:down": "lora_unet_mid_block_resnets_1_conv2.lora_down.weight",
"unet:223:up": "lora_unet_mid_block_resnets_1_conv2.lora_up.weight"
}
}
main()
@ShivamKumar2002
Copy link

thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment