from local

This commit is contained in:
dohe0342 2023-05-25 21:10:47 +09:00
parent 0962ff596d
commit 1558c8c409
2 changed files with 1 additions and 2 deletions

View File

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