-
-
Save andrewssobral/ed82667f15665b312e2e9f829a643cf5 to your computer and use it in GitHub Desktop.
Run Llama-2-13B-chat locally on your M1/M2 Mac with GPU inference. Uses 10GB RAM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Clone llama.cpp | |
git clone https://github.com/ggerganov/llama.cpp.git | |
cd llama.cpp | |
# Build it | |
LLAMA_METAL=1 make | |
# Download model | |
export MODEL=llama-2-13b-chat.ggmlv3.q4_0.bin | |
wget "https://huggingface.co/TheBloke/Llama-2-13B-chat-GGML/resolve/main/${MODEL}" | |
# Run | |
echo "Prompt: " \ | |
&& read PROMPT \ | |
&& ./main \ | |
--threads 8 \ | |
--n-gpu-layers 1 \ | |
--model ${MODEL} \ | |
--color \ | |
--ctx-size 2048 \ | |
--temp 0.7 \ | |
--repeat_penalty 1.1 \ | |
--n-predict -1 \ | |
--prompt "[INST] ${PROMPT} [/INST]" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment