tharms commited on
Commit
6a2dba6
·
1 Parent(s): b77a400

dump unmatched lora

Browse files
Files changed (1) hide show
  1. modules/core.py +1 -1
modules/core.py CHANGED
@@ -99,7 +99,7 @@ class StableDiffusionModel:
99
  if len(lora_unmatch) > 12:
100
  # model mismatch
101
  print(f'NOT Loaded LoRA [{lora_filename}] for model [{self.filename}] '
102
- f'with first 12 of {len(lora_unmatch)} unmatched keys {list(lora_unmatch.keys())[:12]}')
103
  continue
104
 
105
  if len(lora_unmatch) > 0:
 
99
  if len(lora_unmatch) > 12:
100
  # model mismatch
101
  print(f'NOT Loaded LoRA [{lora_filename}] for model [{self.filename}] '
102
+ f'with {len(lora_unmatch)} unmatched keys {list(lora_unmatch.keys())}')
103
  continue
104
 
105
  if len(lora_unmatch) > 0: