DavidAU commited on
Commit
87069ba
1 Parent(s): 12afd61

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +56 -0
README.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: other
5
+ library_name: transformers
6
+ tags:
7
+ - axolotl
8
+ - finetune
9
+ - facebook
10
+ - meta
11
+ - pytorch
12
+ - llama
13
+ - llama-3
14
+ - llama-cpp
15
+ - gguf-my-repo
16
+ base_model: meta-llama/Meta-Llama-3-8B-Instruct
17
+ datasets:
18
+ - mlabonne/chatml-OpenHermes2.5-dpo-binarized-alpha
19
+ model_name: Llama-3-8B-Instruct-DPO-v0.1
20
+ pipeline_tag: text-generation
21
+ license_name: llama3
22
+ license_link: LICENSE
23
+ inference: false
24
+ model_creator: MaziyarPanahi
25
+ quantized_by: MaziyarPanahi
26
+ ---
27
+
28
+ # DavidAU/Llama-3-8B-Instruct-DPO-v0.1-Q8_0-GGUF
29
+ This model was converted to GGUF format from [`MaziyarPanahi/Llama-3-8B-Instruct-DPO-v0.1`](https://huggingface.co/MaziyarPanahi/Llama-3-8B-Instruct-DPO-v0.1) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
30
+ Refer to the [original model card](https://huggingface.co/MaziyarPanahi/Llama-3-8B-Instruct-DPO-v0.1) for more details on the model.
31
+ ## Use with llama.cpp
32
+
33
+ Install llama.cpp through brew.
34
+
35
+ ```bash
36
+ brew install ggerganov/ggerganov/llama.cpp
37
+ ```
38
+ Invoke the llama.cpp server or the CLI.
39
+
40
+ CLI:
41
+
42
+ ```bash
43
+ llama-cli --hf-repo DavidAU/Llama-3-8B-Instruct-DPO-v0.1-Q8_0-GGUF --model llama-3-8b-instruct-dpo-v0.1.Q8_0.gguf -p "The meaning to life and the universe is"
44
+ ```
45
+
46
+ Server:
47
+
48
+ ```bash
49
+ llama-server --hf-repo DavidAU/Llama-3-8B-Instruct-DPO-v0.1-Q8_0-GGUF --model llama-3-8b-instruct-dpo-v0.1.Q8_0.gguf -c 2048
50
+ ```
51
+
52
+ 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.
53
+
54
+ ```
55
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m llama-3-8b-instruct-dpo-v0.1.Q8_0.gguf -n 128
56
+ ```