hus960 commited on
Commit
b2158b9
1 Parent(s): 4a06202

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +51 -0
README.md ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - zh
4
+ - en
5
+ - fr
6
+ - de
7
+ - ja
8
+ - ko
9
+ - it
10
+ - ru
11
+ - fi
12
+ license: other
13
+ library_name: transformers
14
+ tags:
15
+ - llama-cpp
16
+ - gguf-my-repo
17
+ license_name: tongyi-qianwen-license-agreement
18
+ license_link: https://huggingface.co/Qwen/Qwen1.5-14B/blob/39b74a78357df4d2296e838d87565967d663a67a/LICENSE
19
+ pipeline_tag: text-generation
20
+ inference: false
21
+ ---
22
+
23
+ # hus960/openbuddy-qwen1.5-14b-v21.1-32k-Q4_K_M-GGUF
24
+ This model was converted to GGUF format from [`OpenBuddy/openbuddy-qwen1.5-14b-v21.1-32k`](https://huggingface.co/OpenBuddy/openbuddy-qwen1.5-14b-v21.1-32k) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
25
+ Refer to the [original model card](https://huggingface.co/OpenBuddy/openbuddy-qwen1.5-14b-v21.1-32k) for more details on the model.
26
+ ## Use with llama.cpp
27
+
28
+ Install llama.cpp through brew.
29
+
30
+ ```bash
31
+ brew install ggerganov/ggerganov/llama.cpp
32
+ ```
33
+ Invoke the llama.cpp server or the CLI.
34
+
35
+ CLI:
36
+
37
+ ```bash
38
+ llama-cli --hf-repo hus960/openbuddy-qwen1.5-14b-v21.1-32k-Q4_K_M-GGUF --model openbuddy-qwen1.5-14b-v21.1-32k.Q4_K_M.gguf -p "The meaning to life and the universe is"
39
+ ```
40
+
41
+ Server:
42
+
43
+ ```bash
44
+ llama-server --hf-repo hus960/openbuddy-qwen1.5-14b-v21.1-32k-Q4_K_M-GGUF --model openbuddy-qwen1.5-14b-v21.1-32k.Q4_K_M.gguf -c 2048
45
+ ```
46
+
47
+ 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.
48
+
49
+ ```
50
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m openbuddy-qwen1.5-14b-v21.1-32k.Q4_K_M.gguf -n 128
51
+ ```