diff options
author | Kohaku-Blueleaf <59680068+KohakuBlueleaf@users.noreply.github.com> | 2023-12-13 17:44:49 +0000 |
---|---|---|
committer | Kohaku-Blueleaf <59680068+KohakuBlueleaf@users.noreply.github.com> | 2023-12-13 17:44:49 +0000 |
commit | 8fc67f3851babd4575d3312b931d5e7c2b0c78c6 (patch) | |
tree | c5c5cbdbb7e09d9e28ffae9a9c4bb60be0c5295c /extensions-builtin/Lora | |
parent | 265bc26c21264d63956e8f30f1ce31dec917fc76 (diff) | |
download | stable-diffusion-webui-gfx803-8fc67f3851babd4575d3312b931d5e7c2b0c78c6.tar.gz stable-diffusion-webui-gfx803-8fc67f3851babd4575d3312b931d5e7c2b0c78c6.tar.bz2 stable-diffusion-webui-gfx803-8fc67f3851babd4575d3312b931d5e7c2b0c78c6.zip |
remove debug print
Diffstat (limited to 'extensions-builtin/Lora')
-rw-r--r-- | extensions-builtin/Lora/network_oft.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/extensions-builtin/Lora/network_oft.py b/extensions-builtin/Lora/network_oft.py index e3ae61a2..ff4eb59b 100644 --- a/extensions-builtin/Lora/network_oft.py +++ b/extensions-builtin/Lora/network_oft.py @@ -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) |