DavidAU commited on
Commit
69fddf7
1 Parent(s): 122c550

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
+ license: apache-2.0
3
+ library_name: transformers
4
+ tags:
5
+ - DPO
6
+ - Llama3-8B
7
+ - llama-cpp
8
+ - gguf-my-repo
9
+ datasets: mlabonne/chatml-OpenHermes2.5-dpo-binarized-alpha
10
+ ---
11
+
12
+ # DavidAU/Llama3-8B-OpenHermes-DPO-Q8_0-GGUF
13
+ This model was converted to GGUF format from [`Muhammad2003/Llama3-8B-OpenHermes-DPO`](https://huggingface.co/Muhammad2003/Llama3-8B-OpenHermes-DPO) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
14
+ Refer to the [original model card](https://huggingface.co/Muhammad2003/Llama3-8B-OpenHermes-DPO) for more details on the model.
15
+ ## Use with llama.cpp
16
+
17
+ Install llama.cpp through brew.
18
+
19
+ ```bash
20
+ brew install ggerganov/ggerganov/llama.cpp
21
+ ```
22
+ Invoke the llama.cpp server or the CLI.
23
+
24
+ CLI:
25
+
26
+ ```bash
27
+ llama-cli --hf-repo DavidAU/Llama3-8B-OpenHermes-DPO-Q8_0-GGUF --model llama3-8b-openhermes-dpo.Q8_0.gguf -p "The meaning to life and the universe is"
28
+ ```
29
+
30
+ Server:
31
+
32
+ ```bash
33
+ llama-server --hf-repo DavidAU/Llama3-8B-OpenHermes-DPO-Q8_0-GGUF --model llama3-8b-openhermes-dpo.Q8_0.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
+ ```
39
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m llama3-8b-openhermes-dpo.Q8_0.gguf -n 128
40
+ ```