AIRider commited on
Commit
f888450
1 Parent(s): cf7f5fc

Upload README.md with huggingface_hub

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