SourPineapple commited on
Commit
bed7e3a
1 Parent(s): 9ad11de

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - ko
4
+ license: other
5
+ tags:
6
+ - llama-cpp
7
+ - gguf-my-repo
8
+ license_name: llama3
9
+ ---
10
+
11
+ # SourPineapple/Llama-3-Alpha-Ko-8B-Instruct-Q5_K_M-GGUF
12
+ This model was converted to GGUF format from [`allganize/Llama-3-Alpha-Ko-8B-Instruct`](https://huggingface.co/allganize/Llama-3-Alpha-Ko-8B-Instruct) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
13
+ Refer to the [original model card](https://huggingface.co/allganize/Llama-3-Alpha-Ko-8B-Instruct) for more details on the model.
14
+ ## Use with llama.cpp
15
+ Install llama.cpp through brew.
16
+ ```bash
17
+ brew install ggerganov/ggerganov/llama.cpp
18
+ ```
19
+ Invoke the llama.cpp server or the CLI.
20
+ CLI:
21
+ ```bash
22
+ llama-cli --hf-repo SourPineapple/Llama-3-Alpha-Ko-8B-Instruct-Q5_K_M-GGUF --model llama-3-alpha-ko-8b-instruct-q5_k_m.gguf -p "The meaning to life and the universe is"
23
+ ```
24
+ Server:
25
+ ```bash
26
+ llama-server --hf-repo SourPineapple/Llama-3-Alpha-Ko-8B-Instruct-Q5_K_M-GGUF --model llama-3-alpha-ko-8b-instruct-q5_k_m.gguf -c 2048
27
+ ```
28
+ Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
29
+ ```
30
+ git clone https://github.com/ggerganov/llama.cpp && \
31
+ cd llama.cpp && \
32
+ make && \
33
+ ./main -m llama-3-alpha-ko-8b-instruct-q5_k_m.gguf -n 128
34
+ ```