From 3578dd3611b8b363e66fedae0d768e099bb05486 Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Mon, 29 May 2023 22:40:54 -0300 Subject: [PATCH] Change a warning message --- modules/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/models.py b/modules/models.py index ca292ab0..575f28e1 100644 --- a/modules/models.py +++ b/modules/models.py @@ -279,7 +279,7 @@ def GPTQ_loader(model_name): # Monkey patch if shared.args.monkey_patch: - logger.warning("Applying the monkey patch for using LoRAs in 4-bit mode. It may cause undefined behavior outside its intended scope.") + logger.warning("Applying the monkey patch for using LoRAs with GPTQ models. It may cause undefined behavior outside its intended scope.") from modules.monkey_patch_gptq_lora import load_model_llama model, _ = load_model_llama(model_name)