Merge pull request #13178 from wpdong0727/fix-lora-bias-backup-reset

fix: lora-bias-backup don't reset cache
This commit is contained in:
AUTOMATIC1111 2023-09-30 09:48:38 +03:00 committed by GitHub
commit a0e979badb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -418,6 +418,7 @@ def network_forward(module, input, original_forward):
def network_reset_cached_weight(self: Union[torch.nn.Conv2d, torch.nn.Linear]):
self.network_current_names = ()
self.network_weights_backup = None
self.network_bias_backup = None
def network_Linear_forward(self, input):