Skip to content

Commit fb12b6d

Browse files
authored
Merge pull request kohya-ss#1347 from rockerBOO/lora-plus-log-info
Add LoRA+ LR Ratio info message to logger
2 parents febc5c5 + 00513b9 commit fb12b6d

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

networks/dylora.py

+3
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,9 @@ def set_loraplus_lr_ratio(self, loraplus_lr_ratio, loraplus_unet_lr_ratio, lorap
368368
self.loraplus_unet_lr_ratio = loraplus_unet_lr_ratio
369369
self.loraplus_text_encoder_lr_ratio = loraplus_text_encoder_lr_ratio
370370

371+
logger.info(f"LoRA+ UNet LR Ratio: {self.loraplus_unet_lr_ratio or self.loraplus_lr_ratio}")
372+
logger.info(f"LoRA+ Text Encoder LR Ratio: {self.loraplus_text_encoder_lr_ratio or self.loraplus_lr_ratio}")
373+
371374
def set_multiplier(self, multiplier):
372375
self.multiplier = multiplier
373376
for lora in self.text_encoder_loras + self.unet_loras:

networks/lora.py

+3
Original file line numberDiff line numberDiff line change
@@ -1134,6 +1134,9 @@ def set_loraplus_lr_ratio(self, loraplus_lr_ratio, loraplus_unet_lr_ratio, lorap
11341134
self.loraplus_unet_lr_ratio = loraplus_unet_lr_ratio
11351135
self.loraplus_text_encoder_lr_ratio = loraplus_text_encoder_lr_ratio
11361136

1137+
logger.info(f"LoRA+ UNet LR Ratio: {self.loraplus_unet_lr_ratio or self.loraplus_lr_ratio}")
1138+
logger.info(f"LoRA+ Text Encoder LR Ratio: {self.loraplus_text_encoder_lr_ratio or self.loraplus_lr_ratio}")
1139+
11371140
# 二つのText Encoderに別々の学習率を設定できるようにするといいかも
11381141
def prepare_optimizer_params(self, text_encoder_lr, unet_lr, default_lr):
11391142
# TODO warn if optimizer is not compatible with LoRA+ (but it will cause error so we don't need to check it here?)

0 commit comments

Comments
 (0)