AIRider commited on
Commit
e3bf671
1 Parent(s): e106661

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +31 -12
README.md CHANGED
@@ -4,33 +4,52 @@ 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
 
15
 
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
  ```
 
4
  - generated_from_trainer
5
  - llama-cpp
6
  - gguf-my-repo
7
+ base_model: yanolja/EEVE-Korean-Instruct-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
 
17
  ## Use with llama.cpp
18
+ Install llama.cpp through brew (works on Mac and Linux)
19
+
20
  ```bash
21
+ brew install llama.cpp
22
+
23
  ```
24
  Invoke the llama.cpp server or the CLI.
25
+
26
+ ### CLI:
27
  ```bash
28
+ llama --hf-repo AIRider/EEVE-Korean-Instruct-10.8B-v1.0-Q4_K_M-GGUF --hf-file eeve-korean-instruct-10.8b-v1.0-q4_k_m.gguf -p "The meaning to life and the universe is"
29
  ```
30
+
31
+ ### Server:
32
  ```bash
33
+ llama-server --hf-repo AIRider/EEVE-Korean-Instruct-10.8B-v1.0-Q4_K_M-GGUF --hf-file eeve-korean-instruct-10.8b-v1.0-q4_k_m.gguf -c 2048
34
  ```
35
+
36
  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.
37
+
38
+ Step 1: Clone llama.cpp from GitHub.
39
+ ```
40
+ git clone https://github.com/ggerganov/llama.cpp
41
+ ```
42
+
43
+ Step 2: Move into the llama.cpp folder and build it with `LLAMA_CURL=1` flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).
44
+ ```
45
+ cd llama.cpp && LLAMA_CURL=1 make
46
+ ```
47
+
48
+ Step 3: Run inference through the main binary.
49
+ ```
50
+ ./main --hf-repo AIRider/EEVE-Korean-Instruct-10.8B-v1.0-Q4_K_M-GGUF --hf-file eeve-korean-instruct-10.8b-v1.0-q4_k_m.gguf -p "The meaning to life and the universe is"
51
+ ```
52
+ or
53
  ```
54
+ ./server --hf-repo AIRider/EEVE-Korean-Instruct-10.8B-v1.0-Q4_K_M-GGUF --hf-file eeve-korean-instruct-10.8b-v1.0-q4_k_m.gguf -c 2048
 
 
 
55
  ```