zz814 commited on
Commit
92126e0
1 Parent(s): 43d744f

Upload README.md with huggingface_hub

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