AIRider commited on
Commit
87112b6
1 Parent(s): 38f4ffa

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - generated_from_trainer
5
+ - llama-cpp
6
+ - gguf-my-repo
7
+ base_model: yanolja/EEVE-Korean-10.8B-v1.0
8
+ model-index:
9
+ - name: yanolja/EEVE-Korean-Instruct-10.8B-v1.0
10
+ results: []
11
+ ---
12
+
13
+ # AIRider/EEVE-Korean-Instruct-10.8B-v1.0-Q4_K_M-GGUF
14
+ This model was converted to GGUF format from [`yanolja/EEVE-Korean-Instruct-10.8B-v1.0`](https://huggingface.co/yanolja/EEVE-Korean-Instruct-10.8B-v1.0) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
15
+ Refer to the [original model card](https://huggingface.co/yanolja/EEVE-Korean-Instruct-10.8B-v1.0) for more details on the model.
16
+ ## Use with llama.cpp
17
+ Install llama.cpp through brew.
18
+ ```bash
19
+ brew install ggerganov/ggerganov/llama.cpp
20
+ ```
21
+ Invoke the llama.cpp server or the CLI.
22
+ CLI:
23
+ ```bash
24
+ llama-cli --hf-repo AIRider/EEVE-Korean-Instruct-10.8B-v1.0-Q4_K_M-GGUF --model eeve-korean-instruct-10.8b-v1.0-q4_k_m.gguf -p "The meaning to life and the universe is"
25
+ ```
26
+ Server:
27
+ ```bash
28
+ llama-server --hf-repo AIRider/EEVE-Korean-Instruct-10.8B-v1.0-Q4_K_M-GGUF --model eeve-korean-instruct-10.8b-v1.0-q4_k_m.gguf -c 2048
29
+ ```
30
+ 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.
31
+ ```
32
+ git clone https://github.com/ggerganov/llama.cpp && \
33
+ cd llama.cpp && \
34
+ make && \
35
+ ./main -m eeve-korean-instruct-10.8b-v1.0-q4_k_m.gguf -n 128
36
+ ```