from local

This commit is contained in:
dohe0342 2023-05-25 21:13:02 +09:00
parent aaf77797f3
commit 57fa0f05d8
2 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ class LoRAHook():
lora_alpha=1.0,
)
def hook_fn(self, module, input, output):
print(module, input, output.size())
print(module, input.size(), output.size())
lora_out = self.lora(input)
output += lora_out