Oleg Shulyakov commited on
Commit
c1ffdc3
·
1 Parent(s): e99afcb

Fix misprint

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -170,7 +170,7 @@ def process_model(model_id, q_method, use_imatrix, imatrix_q_method, private_rep
170
  raise Exception('adapter_config.json is present.<br/><br/>If you are converting a LoRA adapter to GGUF, please use <a href="https://huggingface.co/spaces/ggml-org/gguf-my-lora" target="_blank" style="text-decoration:underline">GGUF-my-lora</a>.')
171
 
172
  result = subprocess.run([
173
- "python", CONVERSION_SCRIPT, local_dir, "--outtype", "f16", "--outfile", fp16
174
  ], shell=False, capture_output=True)
175
  print(result)
176
  if result.returncode != 0:
 
170
  raise Exception('adapter_config.json is present.<br/><br/>If you are converting a LoRA adapter to GGUF, please use <a href="https://huggingface.co/spaces/ggml-org/gguf-my-lora" target="_blank" style="text-decoration:underline">GGUF-my-lora</a>.')
171
 
172
  result = subprocess.run([
173
+ "python3", CONVERSION_SCRIPT, local_dir, "--outtype", "f16", "--outfile", fp16
174
  ], shell=False, capture_output=True)
175
  print(result)
176
  if result.returncode != 0: