Skip to content

Commit

Permalink
llama.cpp: remove -eps term due to deprecation in new gguf format (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ymcui authored Aug 22, 2023
2 parents fced4ce + 8357f66 commit fa58621
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/llama-cpp/chat.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ MODEL_PATH=$1
FIRST_INSTRUCTION=$2

./main -m "$MODEL_PATH" \
--color -i -c 4096 -t 8 --temp 0.5 --top_k 40 --top_p 0.9 --repeat_penalty 1.1 -eps 1e-5 \
--color -i -c 4096 -t 8 --temp 0.5 --top_k 40 --top_p 0.9 --repeat_penalty 1.1 \
--in-prefix-bos --in-prefix ' [INST] ' --in-suffix ' [/INST]' -p \
"[INST] <<SYS>>
$SYSTEM_PROMPT
Expand Down

0 comments on commit fa58621

Please sign in to comment.