Explorar el Código

remove unnecessary Path()

ItsLogic hace 2 años
padre
commit
9ba8156a70
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      modules/models.py

+ 1 - 1
modules/models.py

@@ -117,7 +117,7 @@ def load_model(model_name):
             print(f"Could not find {pt_model}, exiting...")
             exit()
 
-        model = load_quant(path_to_model, Path(f"{pt_path}"), bits)
+        model = load_quant(path_to_model, pt_path, bits)
 
         # Multi-GPU setup
         if shared.args.gpu_memory: