fixed LoRA loading issue (#1865)

This commit is contained in:
Clay Shoaf 2023-05-08 15:21:55 -04:00 committed by GitHub
parent 8818967d37
commit 79ac94cc2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,6 +28,7 @@ def add_lora_to_model(lora_names):
# If any LoRA needs to be removed, start over
if len(removed_set) > 0:
shared.model.disable_adapter()
shared.model = shared.model.base_model.model
if len(lora_names) > 0:
logging.info("Applying the following LoRAs to {}: {}".format(shared.model_name, ', '.join(lora_names)))