-
-
Save jhwohlgemuth/54eabe2440756e03baa10e6a9aba3d06 to your computer and use it in GitHub Desktop.
Revisions
-
adrienbrault revised this gist
Jul 20, 2023 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -21,4 +21,4 @@ echo "Prompt: " \ --temp 0.7 \ --repeat_penalty 1.1 \ -n -1 \ -p "[INST] ${PROMPT} [/INST]" -
adrienbrault revised this gist
Jul 19, 2023 . No changes.There are no files selected for viewing
-
adrienbrault revised this gist
Jul 19, 2023 . No changes.There are no files selected for viewing
-
adrienbrault created this gist
Jul 19, 2023 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ # 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 \ -t 8 \ -ngl 1 \ -m ${MODEL} \ --color \ -c 2048 \ --temp 0.7 \ --repeat_penalty 1.1 \ -n -1 \ -p "### Instruction: ${PROMPT} \n### Response:"