Corrected previous commit

This commit is contained in:
Gerardo Romero 2023-03-19 12:18:17 -06:00
parent b802b788c4
commit c389c69033

View file

@ -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
)