Skip to content

Commit

Permalink
LLMFactCheck
Browse files Browse the repository at this point in the history
  • Loading branch information
mlupei committed Feb 18, 2024
1 parent 1b26d10 commit 23692aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/load_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def load_model(model_type, use_icl):
if model_type == 'llama':
# Load a Llama model
model_name = "TheBloke/Llama-2-70B-Chat-GGUF"
model_path = hf_hub_download(repo_id=model_name, filename="llama-2-70b-chat.Q5_K_S.gguf")
model_path = hf_hub_download(repo_id=model_name, filename="lama-2-70b-chat.Q8_0.gguf")
model = Llama(model_path=model_path, n_threads=10, n_batch=512, n_gpu_layers=64, n=128, mlock=True)
if use_icl:
return prepare_icl(model, model_type)
Expand Down

0 comments on commit 23692aa

Please sign in to comment.