mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-12-28 12:24:35 +00:00
20 lines
335 B
Bash
Executable File
20 lines
335 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#
|
|
# Temporary script - will be removed in the future
|
|
#
|
|
|
|
cd `dirname $0`
|
|
cd ..
|
|
|
|
./main -m ./models/alpaca.13b.ggmlv3.q8_0.bin \
|
|
--color \
|
|
-f ./prompts/alpaca.txt \
|
|
--kv_size 2048 \
|
|
-n -1 \
|
|
-ins -b 256 \
|
|
--top_k 10000 \
|
|
--temp 0.2 \
|
|
--repeat_penalty 1.1 \
|
|
-t 7
|