diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2024-06-10 15:00:15 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-10 15:00:15 +0300 |
commit | c28a83902cf6ab6a9e085ad6d4cc2e95c4ccfe40 (patch) | |
tree | 43e74942b839bcdd77b8db7540e744d75c05b586 /examples/llama2.sh | |
parent | d9da0e4986f121c727bdd9579a6688097b11602c (diff) |
examples : remove --instruct remnants (#7846)
Diffstat (limited to 'examples/llama2.sh')
-rwxr-xr-x | examples/llama2.sh | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/examples/llama2.sh b/examples/llama2.sh deleted file mode 100755 index 221b3755..00000000 --- a/examples/llama2.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -# -# Temporary script - will be removed in the future -# - -cd `dirname $0` -cd .. - -./main -m models/available/Llama2/7B/llama-2-7b.ggmlv3.q4_0.bin \ - --color \ - --ctx_size 2048 \ - -n -1 \ - -ins -b 256 \ - --top_k 10000 \ - --temp 0.2 \ - --repeat_penalty 1.1 \ - -t 8 |