Skip to content

Commit

Permalink
fix: FileNotFoundError (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
parveen232 authored May 13, 2024
1 parent 01417f3 commit f24fbc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/quantize.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit f24fbc1

Please sign in to comment.