aboutsummaryrefslogtreecommitdiff
path: root/examples/alpaca.sh
diff options
context:
space:
mode:
authortslmy <tslmy@users.noreply.github.com>2023-07-06 09:17:50 -0700
committerGitHub <noreply@github.com>2023-07-06 19:17:50 +0300
commita17a2683d8fdb899ba497d0c28ccafb28c62efb6 (patch)
tree1388ae3e89d347f8c5b22a978ef667efc5e807a2 /examples/alpaca.sh
parent31cfbb1013a482e89c72146e2063ac4362becae7 (diff)
alpaca.sh : update model file name (#2074)
The original file name, `ggml-alpaca-7b-q4.bin`, implied the first-generation GGML. After the breaking changes (mentioned in https://github.com/ggerganov/llama.cpp/issues/382), `llama.cpp` requires GGML V3 now. Those model files are named `*ggmlv3*.bin`. We should change the example to an actually working model file, so that this thing is more likely to run out-of-the-box for more people, and less people would waste time downloading the old Alpaca model.
Diffstat (limited to 'examples/alpaca.sh')
-rwxr-xr-xexamples/alpaca.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/alpaca.sh b/examples/alpaca.sh
index aef207f..8d2bae6 100755
--- a/examples/alpaca.sh
+++ b/examples/alpaca.sh
@@ -7,7 +7,7 @@
cd `dirname $0`
cd ..
-./main -m ./models/ggml-alpaca-7b-q4.bin \
+./main -m ./models/alpaca.13b.ggmlv3.q8_0.bin \
--color \
-f ./prompts/alpaca.txt \
--ctx_size 2048 \