yews1234 commited on
Commit
32a1286
1 Parent(s): 434eb0a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +55 -0
README.md ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ - ko
5
+ license: cc-by-nc-sa-4.0
6
+ tags:
7
+ - facebook
8
+ - meta
9
+ - pytorch
10
+ - llama
11
+ - llama-2
12
+ - kollama
13
+ - llama-2-ko
14
+ - llama-cpp
15
+ - gguf-my-repo
16
+ extra_gated_heading: Access Llama-2-Ko on Hugging Face
17
+ extra_gated_button_content: Submit
18
+ extra_gated_fields:
19
+ I agree to share my name, email address and username: checkbox
20
+ ? I confirm that I understand this project is for research purposes only, and confirm
21
+ that I agree to follow the LICENSE of this model
22
+ : checkbox
23
+ pipeline_tag: text-generation
24
+ inference: false
25
+ ---
26
+
27
+ # yews1234/llama-2-koen-13b-Q4_K_M-GGUF
28
+ This model was converted to GGUF format from [`beomi/llama-2-koen-13b`](https://huggingface.co/beomi/llama-2-koen-13b) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
29
+ Refer to the [original model card](https://huggingface.co/beomi/llama-2-koen-13b) for more details on the model.
30
+ ## Use with llama.cpp
31
+
32
+ Install llama.cpp through brew.
33
+
34
+ ```bash
35
+ brew install ggerganov/ggerganov/llama.cpp
36
+ ```
37
+ Invoke the llama.cpp server or the CLI.
38
+
39
+ CLI:
40
+
41
+ ```bash
42
+ llama-cli --hf-repo yews1234/llama-2-koen-13b-Q4_K_M-GGUF --model llama-2-koen-13b.Q4_K_M.gguf -p "The meaning to life and the universe is"
43
+ ```
44
+
45
+ Server:
46
+
47
+ ```bash
48
+ llama-server --hf-repo yews1234/llama-2-koen-13b-Q4_K_M-GGUF --model llama-2-koen-13b.Q4_K_M.gguf -c 2048
49
+ ```
50
+
51
+ 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.
52
+
53
+ ```
54
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m llama-2-koen-13b.Q4_K_M.gguf -n 128
55
+ ```