remove debug print

This commit is contained in:
Kohaku-Blueleaf 2023-12-14 01:44:49 +08:00
parent 265bc26c21
commit 8fc67f3851

View File

@ -77,6 +77,5 @@ class NetworkModuleOFT(network.NetworkModule):
merged_weight = rearrange(merged_weight, 'k m ... -> (k m) ...')
updown = merged_weight.to(orig_weight.device, dtype=orig_weight.dtype) - orig_weight
print(torch.norm(updown))
output_shape = orig_weight.shape
return self.finalize_updown(updown, orig_weight, output_shape)