Explorar el Código

Insert to the path instead of appending

oobabooga hace 2 años
padre
commit
74102d5ee4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      modules/models.py

+ 1 - 1
modules/models.py

@@ -89,7 +89,7 @@ def load_model(model_name):
 
     # 4-bit LLaMA
     elif shared.args.load_in_4bit:
-        sys.path.append(os.path.abspath(Path("repositories/GPTQ-for-LLaMa")))
+        sys.path.insert(0, os.path.abspath(Path("repositories/GPTQ-for-LLaMa")))
 
         from llama import load_quant