DavidAU commited on
Commit
9110242
1 Parent(s): 34fdf1b

Upload README.md with huggingface_hub

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