From c389c69033285b8d5c7649e63df28760d64d1d2f Mon Sep 17 00:00:00 2001 From: Gerardo Romero Date: Sun, 19 Mar 2023 12:18:17 -0600 Subject: [PATCH] Corrected previous commit --- quantize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quantize.py b/quantize.py index 8ac0d58a8..bb2ca3d5f 100644 --- a/quantize.py +++ b/quantize.py @@ -107,7 +107,7 @@ def __run_quantize_script(script_path, f16_model_part_path): new_quantized_model_path = f16_model_part_path.replace("f16", "q4_0") subprocess.run( [script_path, f16_model_part_path, new_quantized_model_path, "2"], - shell=True, check=True + check=True )