mirror of
https://github.com/finegrain-ai/refiners.git
synced 2024-11-09 23:12:02 +00:00
fix debug map when attaching two LoRAs
(in that case return the path of the LoraAdapter)
This commit is contained in:
parent
72fa17df48
commit
ccd9414ff1
|
@ -460,6 +460,9 @@ def _auto_attach_loras(
|
||||||
adapter, parent = attached
|
adapter, parent = attached
|
||||||
if parent is None:
|
if parent is None:
|
||||||
# `adapter` is already attached and `lora` has been added to it
|
# `adapter` is already attached and `lora` has been added to it
|
||||||
|
if debug_map is not None:
|
||||||
|
path = adapter.get_path()
|
||||||
|
debug_map.append((key, path))
|
||||||
continue
|
continue
|
||||||
if debug_map is not None:
|
if debug_map is not None:
|
||||||
path = adapter.target.get_path(parent)
|
path = adapter.target.get_path(parent)
|
||||||
|
|
Loading…
Reference in a new issue