From f24fbc1637ed2101f51cc3bf453cf035ba142883 Mon Sep 17 00:00:00 2001 From: Parveen Kumar <89995648+parveen232@users.noreply.github.com> Date: Mon, 13 May 2024 12:33:43 +0530 Subject: [PATCH] fix: FileNotFoundError (#36) --- src/quantize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quantize.py b/src/quantize.py index 1f07f51..b2a7f8a 100644 --- a/src/quantize.py +++ b/src/quantize.py @@ -36,6 +36,6 @@ def quantize_model(repo_id): '--outfile', outfile ] - subprocess.run(command, check=True) + subprocess.run(command, check=True, shell=True) return outfile