wq2012 commited on
Commit
66e320f
·
verified ·
1 Parent(s): fcc93c7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -9,10 +9,8 @@ DiarizationLM GGUF inference on CPU
9
  """
10
 
11
  model_path = "models"
12
- # model_name = "model-unsloth.Q4_K_M.gguf"
13
- # hf_hub_download(repo_id="google/DiarizationLM-13b-Fisher-v1", filename=model_name, local_dir=model_path, local_dir_use_symlinks=False)
14
- model_name = "mistral-7b-instruct-v0.1.Q4_K_M.gguf"
15
- hf_hub_download(repo_id="TheBloke/Mistral-7B-Instruct-v0.1-GGUF", filename=model_name, local_dir=model_path, local_dir_use_symlinks=False)
16
 
17
  print("Start the model init process")
18
  model = model = GPT4All(model_name, model_path, allow_download = False, device="cpu")
 
9
  """
10
 
11
  model_path = "models"
12
+ model_name = "model-unsloth.Q4_K_M.gguf"
13
+ hf_hub_download(repo_id="google/DiarizationLM-13b-Fisher-v1", filename=model_name, local_dir=model_path, local_dir_use_symlinks=False)
 
 
14
 
15
  print("Start the model init process")
16
  model = model = GPT4All(model_name, model_path, allow_download = False, device="cpu")